Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

64 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

  • Call stack

    • to store primitives (and function calls)
    • use let keyword to change memory adress

let myString = "abc";
mystring = "abcd";
  • Memory heap

    • to store non-primitives
    • use const keyword to keep the same memory address, but change value

const myArray = [];
myArray.push(1);

Releases

Packages

Used by

Contributors

Languages