Skip to content

Instantly share code, notes, and snippets.

@tanisha03
Created March 8, 2020 10:42
Show Gist options
  • Select an option

  • Save tanisha03/c57d8e034f3e4bc45491c8a4742e5f98 to your computer and use it in GitHub Desktop.

Select an option

Save tanisha03/c57d8e034f3e4bc45491c8a4742e5f98 to your computer and use it in GitHub Desktop.
function sayfirst(){
setTimeout(function(){
console.log("First")},500);
}
function saySecond(){
console.log("Second") }
sayFirst();
saySecond();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment