“string javascript dapat berubah” Kode Jawaban

string javascript bisa berubah

var immutableString = "Hello";

// In the above code, a new object with string value is created.

immutableString = immutableString + "World";

// We are now appending "World" to the existing value.
Dentetsu

string javascript dapat berubah

let a = b = "hello";
a = a + " world";
// b is not affected
Undefined

Jawaban yang mirip dengan “string javascript dapat berubah”

Pertanyaan yang mirip dengan “string javascript dapat berubah”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya