Fonction de conversion de chaîne javascript : 1. Fonction toString(), qui peut convertir toutes les données en chaînes, la syntaxe est "number.toString(radix)" 2. Fonction String(), qui peut convertir des objets Le La valeur est convertie en chaîne avec la syntaxe "String(js object)".
L'environnement d'exploitation de ce tutoriel : système Windows 7, JavaScript version 1.8.5, ordinateur Dell G3.
Fonction de conversion de chaîne JavaScript - String() et toString()
1. converti en chaînes, mais .toString()
et null
undefined
<script> var str = false.toString(); console.log(str, typeof str); </script>
<blockquote style="margin-right: 0px;" dir="ltr"> <pre class="html" name="code"> <script> var str = null.toString(); console.log(str, typeof str); </script>
<script> var str = undefined.toString(); console.log(str,typeof str); </script>
Ceux entre parenthèses sont OK Écrivez un nombre, représentant la base, correspondant à la chaîne de base .toString()
var c = 123 ; console.log(c.toString(8));
173
2 , peut convertir null et undefined en chaînes. String()
<script> var str = String(null); console.log(str, typeof str); </script
<script> var str = String(undefined); console.log(str, typeof str); </script>
console.log(String(077));
Tutoriel d'apprentissage du javascript]
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!