Skip to content

Instantly share code, notes, and snippets.

@dimasmiftah
Created July 10, 2020 09:17
Show Gist options
  • Save dimasmiftah/831482af7a4943607642920b0a8631ce to your computer and use it in GitHub Desktop.
Save dimasmiftah/831482af7a4943607642920b0a8631ce to your computer and use it in GitHub Desktop.
// CONTOH IMMUTABLE - NUMBER
let umur1 = 15
let umur2 = umur1 - 5
console.log(umur1) // akan menampilkan 15
console.log(umur2) // akan menampilkan 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment