Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

what is asynchronous

// some functions
function foo() {
	console.log("foo")
}
function bar() {
	console.log("bar")
}

/*  due to the javascript event-loop behavior this code
	is going to be asynchronous but what does that mean?
    
    well, first you need to understand the concept of asynchronous, 
    In computer programming, asynchronous operation means that a 
    process operates independently of other processes. 
*/
setTimeout(foo, 2000)
console.log("faz")
bar()

// this code above is going to print out:
// "faz"
// "bar"
// "foo"

/* this happens because the event loop first executes all the synchronous code 
then waits for the timer to complete and then when it's done puts the callback 
that we passed it in as a first param in something called the task queue where 
it will be added to the call stack and executed
Comment

what is asynchronous in javascript

// some functions
function foo() {
	console.log("foo")
}
function bar() {
	console.log("bar")
}

/*  due to the javascript event-loop behavior this code
	is going to be asynchronous but what does that mean?
    
    well, first you need to understand the concept of asynchronous, 
    In computer programming, asynchronous operation means that a 
    process operates independently of other processes. 
*/
setTimeout(foo, 2000)
console.log("faz")
bar()

// this code above is going to print out:
// "faz"
// "bar"
// "foo"

/* this happens because the event loop first executes all the synchronous code 
then waits for the timer to complete and then when it's done puts the callback 
that we passed it in as a first param in something called the task queue where 
it will be added to the call stack and executed
Comment

Asynchronous in javascript

//Asynchronous JavaScript
console.log('I am first');
setTimeout(() => {
    console.log('I am second')
}, 2000)
setTimeout(() => {
    console.log('I am third')
}, 1000)
console.log('I am fourth')
//Expected output:
// I am first
// I am fourth
// I am third
// I am second
Comment

Asynchronous in javascript

//Asynchronous JavaScript
console.log('I am first');
setTimeout(() => {
    console.log('I am second')
}, 2000)
setTimeout(() => {
    console.log('I am third')
}, 1000)
console.log('I am fourth')
//Expected output:
// I am first
// I am fourth
// I am third
// I am second
Comment

asynchronous javascript

console.log ('Starting');
let image;

fetch('coffee.jpg').then((response) => {
  console.log('It worked :)')
  return response.blob();
}).then((myBlob) => {
  let objectURL = URL.createObjectURL(myBlob);
  image = document.createElement('img');
  image.src = objectURL;
  document.body.appendChild(image);
}).catch((error) => {
  console.log('There has been a problem with your fetch operation: ' + error.message);
});

console.log ('All done!');
Comment

javascript asynchronous

<script>
    document.write("Hi");
    document.write("<br>");
  
    setTimeout(() => {
        document.write("Let us see what happens");
    }, 2000);
  
    document.write("<br>");
    document.write("End");
    document.write("<br>");
</script>

/*Hi
End
Let us see what happens*/
Comment

Asynchronous JavaScript

function myDisplayer(something) {
  document.getElementById("demo").innerHTML = something;
}

function myCalculator(num1, num2, myCallback) {
  let sum = num1 + num2;
  myCallback(sum);
}

myCalculator(5, 5, myDisplayer);
Comment

PREVIOUS NEXT
Code Example
Javascript :: how to use findoneandupdate 
Javascript :: convert string to array javascript 
Javascript :: array with object same keys 
Javascript :: how to add abutton component to drawer in react native 
Javascript :: node js add new object to object array json 
Javascript :: round 2 decimal places 
Javascript :: inline javascript modules 
Javascript :: jquery autocomplete bootstrap modal 
Javascript :: redux toolkit remove from array 
Javascript :: spinner react native 
Javascript :: closest js 
Javascript :: js array last element 
Javascript :: change class js 
Javascript :: create a style in div jsx 
Javascript :: discord.js set role permissions for all channels 
Javascript :: split and join in javascript 
Javascript :: javascript date array 
Javascript :: angular ng class with animation 
Javascript :: building a linked list javascript 
Javascript :: es6 concat array 
Javascript :: javascript number if .00 truncate 
Javascript :: how to make a dictionary javascript 
Javascript :: node fetch response body 
Javascript :: angular load on scroll 
Javascript :: array.flat 
Javascript :: js detect object has key 
Javascript :: trigger click on first row datatable jquery 
Javascript :: create global variable inside function JavaScript 
Javascript :: element.js 
Javascript :: javaScript new Set() Method 
ADD CONTENT
Topic
Content
Source link
Name
4+3 =