Show Menu
Cheatography

JavaScript Basics Cheat Sheet (DRAFT) by

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Variables

var a;
var s1 = 'string1';
var n = 6;
var s2 = "­str­ing­2";
consol­e.l­og(a);

// undefined

consol­e.log(n + ' : ' + typeof n);

//6 : number

consol­e.l­og(s1 + ' : ' + typeof s1);

//string1 : string

consol­e.l­og(s2 + ' : ' + typeof s2);

//string2 : string
 

Opérateurs de compar­aison

>
3>2 // true
2>3 // false
<
2<3 // true
3<2 // false
==
3==3 // true
3==2 // false
// égalité valeur
3=='3' // true
===
3===3 // true
3===2 // false
// égalité valeur et type
3==='3' // false