Région de recherche :

Date :

https://stackoverflow.com › questions › 263965

How can I convert a string to boolean in JavaScript?

Can I convert a string representing a boolean value (e.g., 'true', 'false') into an intrinsic type in JavaScript? I have a hidden form in HTML that is updated based on a user's selection within a l...

https://stackoverflow.com › questions › 11083254

Casting to string in JavaScript - Stack Overflow

I found three ways to cast a variable to String in JavaScript. I searched for those three options in the jQuery source code, and they are all in use. I would like to know if there are any differences between them: value.toString() String(value) value + "" DEMO. They all produce the same output, but does one of them better than the ...

https://www.w3schools.com › jsref › jsref_string.asp

JavaScript String() Method - W3Schools

Syntax. String (value) Parameters. Return Value. Browser Support. String() is an ECMAScript1 (ES1) feature. ES1 (JavaScript 1997) is fully supported in all browsers: More Examples. Examples. Convert different values to strings: String (Boolean (0)); String (Boolean (1)); String ( [1,2,3,4]); Try it Yourself »

https://www.freecodecamp.org › espanol › news › javascript-de-numero-a-cadena-como-usar-to...

JavaScript de número a cadena: Cómo usar toString para convertir un ...

El método toString() es un método integrado del objeto Number de JavaScript que le permite convertir cualquier valor de tipo numérico en su representación de tipo cadena. Cómo usar el método toString en JavaScript. Para usar el método toString(), simplemente necesitas llamar al método en un valor numérico.

JavaScript de número a cadena: Cómo usar toString para convertir un ...

https://www.w3schools.com › js › js_type_conversion.asp

JavaScript Type Conversions - W3Schools

JavaScript Type Conversion. JavaScript variables can be converted to a new variable and another data type: By the use of a JavaScript function. Automatically by JavaScript itself. Converting Strings to Numbers. The global method Number() converts a variable (or a value) into a number. A numeric string (like "3.14") converts to a number (like 3.14).

https://developer.mozilla.org › es › docs › Web › JavaScript › Reference › Global_Objects › String

String — Cadena de caracteres - JavaScript | MDN - MDN Web Docs

Devuelve los caracteres en una cadena que comienza en la ubicación especificada hasta el número especificado de caracteres. String.prototype.substring(indexStart[, indexEnd]) Devuelve una nueva cadena que contiene caracteres de la cadena llamadora de (o entre) el índice (o indeces) especificados.

https://www.letecode.com › tutoriels › tutoriel-javascript › chaines-en-javascript

Chaînes en Javascript - Letecode

Conversion d'une chaîne en majuscule ou en minuscule. Vous pouvez utiliser la méthode toUpperCase() pour convertir une chaîne en majuscule, comme ceci : var str = "Hello World!"; var result = str.toUpperCase(); document.write(result); // Affiche : HELLO WORLD!

https://www.delftstack.com › fr › howto › javascript › convert-string-to-number-javascript

Convertir une chaîne en un nombre en JavaScript | Delft Stack

Utilisez la fonction parseInt() pour convertir une chaîne en entier en JavaScript. Une autre façon de traiter les nombres de chaînes est d’utiliser la méthode parseInt() de JavaScript. parseInt() prend deux arguments, l’un est la chaîne à convertir, et l’autre est la base (signifie la base).

https://www.delftstack.com › fr › howto › javascript › convert-int-to-string-javascript

Convertir un entier en chaîne en JavaScript - Delft Stack

Utilisez la fonction String() pour convertir un entier en chaîne en JavaScript. Nous avons utilisé String() pour convertir la valeur d’une variable en chaîne. Cette méthode est également appelée transtypage. Le transtypage signifie changer le type de données d’une valeur en un autre type de données. Vérifiez le code ci-dessous.