Eloquent JavaScript

Liens utiles

Leçons

Chaines

Calcul à la volée (non compatible IE)
var ls_chaine=`half of 100 
is ${100/2}`;

typeof

typeof "test" → string
typeof 3.1416 → number
typeof NaN → number
typeof Infinity → number
typeof abc → undefined
typeof null → object
typeof [] → object
typeof true → boolean
typeof Array → function

Conversions

Number(prompt('Choisis un nombre'))
Boolean(1) → true
String (3) → "3"