Vertaling van "parseInt" in Engels
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
Voir aussi la page sur parseInt().
On peut convertir une chaîne en un nombre entier à l'aide de la fonction intégrée parseInt().
You can convert a string to an integer using the built-in parseInt() function.
La fonction parseInt() analyse une chaîne de caractère fournie en argument et renvoie un entier exprimé dans une base donnée.
The parseInt() function parses a string argument and returns an integer of the specified radix or base.
La méthode parseInt() de l'objet global.
The global parseInt() method.
Cela se produit parce que la fonction parseInt() a été implémentée pour traiter la chaîne comme un nombre octal à cause du zéro initial.
That happened because the parseInt() function decided to treat the string as octal due to the leading 0.
parseInt ne traite plus les chaînes de caractères commençant par "0" comme un octal (bug 786135).
parseInt no longer treats strings with leading "0" as octal (bug 786135).
La fonction parseInt() est nécessaire pour convertir la chaîne de caractères renvoyée par l'API en entier.
The parseInt() function is necessary to convert to an integer the string returned by the API.
Avant, il était possible d'utiliser l'opérateur new sur plusieurs fonctions natives (eval, parseInt, Date.parse, etc) ce qui, conformément à la spécification, n'était pas autorisé.
In the past, it was possible to use the new operator on several built-in functions (eval, parseInt, Date.parse...) that should not have allowed it, according to the specification.
De la même manière, vous pouvez traiter les nombres à virgule flottante à l'aide de la fonction intégrée parseFloat(), qui à la différence de sa cousine parseInt() utilise toujours la base 10.
Similarly, you can parse floating point numbers using the built-in parseFloat() function which uses base 10 always unlike its parseInt() cousin.
Si la chaîne contient un nombre avec des décimales, la fonction parseInt ne conserve que la partie entière, contrairement à parseFloat.
If the string contains a number with decimals, the parseInt function keeps only the integer part, contrary to parseFloat.
La fonction parseFloat() convertit une chaîne de caractères en un nombre flottant. parseInt()
The parseFloat() function parses a string argument and returns a floating point number. parseInt()
parseInt() et parseFloat() pour convertir les caractères des données entrantes en valeurs numériques,
parseInt() and parseFloat() for converting incoming characters into numeric values,
Un exemple serait Integer::parseInt, qui pourrait être associée à une collection de String pour produire une collection d'Integer.
An example would be Integer::parseInt, which could be mapped to a collection of Strings to produce a collection of Integers.