Conversion de t...LOGIN

Conversion de types JavaScript

Conversion de type JavaScript

Number() est converti en nombre, String() est converti en chaîne et Boolean() est converti en valeur booléenne.

Types de données JavaScript

Il existe 5 types de données différents en JavaScript :

chaîne

numéro

booléen

objet

fonction

3 types d'objets :

Objet

Date

Array

2 Un type de données qui ne contient aucune valeur :

null

undefined

opérateur typeof

Vous pouvez utiliser l'opérateur typeof pour afficher les données d'un type de variable JavaScript .

 <html>
<body>
<script type="text/javascript">
var test=new Array();
if (test.constructor==Array)
{
document.write("This is an Array");
}
if (test.constructor==Boolean)
{
document.write("This is a Boolean");
}
if (test.constructor==Date)
{
document.write("This is a Date");
}
if (test.constructor==String)
{
document.write("This is a String");
}
</script>
</body>
</html>
section suivante
<html> <body> <script type="text/javascript"> var test=new Array(); if (test.constructor==Array) { document.write("This is an Array"); } if (test.constructor==Boolean) { document.write("This is a Boolean"); } if (test.constructor==Date) { document.write("This is a Date"); } if (test.constructor==String) { document.write("This is a String"); } </script> </body> </html>
soumettreRéinitialiser le code
chapitredidacticiel