pastebin - collaborative debugging tool
kpaste.net RSS


Hoisting
Posted by Anonymous on Tue 19th Nov 2024 13:38
raw | new post
view followups (newest first): Hoisting by Anonymous

  1.  
  2. console.log(a);  // undefined
  3.  
  4. var a = 2;
  5. console.log(a);  // 2
  6.  
  7.  
  8. greet();
  9. function greet (){
  10.     console.log("GHello Boy");  // GHello Boy
  11. }
  12.  
  13. greet1();
  14. var greet1 = () => {
  15.     console.log("GHello Boy 1");  // GHello Boy
  16. }
  17.  
  18. const Rectangle = class {
  19.     //
  20. }

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at