“String javascript mutable” Réponses codées

La chaîne JavaScript est mutable

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 mutable

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

Réponses similaires à “String javascript mutable”

Questions similaires à “String javascript mutable”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code