Last active
July 10, 2020 09:13
-
-
Save dimasmiftah/d8afa5df6b21483f91c6edaead783c49 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// CONTOH IMMUTABLE - STRING | |
let nama1 = 'hinata' | |
let nama2 = nama1 + ' shoyo' | |
console.log(nama1) // akan menampilkan 'hinata' | |
console.log(nama2) // akan menampilkan 'hinata shoyo' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment