Skip to content

zaikinv/cs-docs

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);

About

📝 Collection of random notes

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages