Top

#4. LES TYPES DE DONNÉES (PARTIE 1/2) ET LES COMMENTAIRES JS.

JavaScript
console.log("J'espère que tout va bien pour vous !");

let age = 30;
const pi = 3.14;

let name = "Julien d'abord";

let isWorking = false;
let nombreDeProduitsDansLePanier = 12;

/*
    TYPES DE DONNES EN JS

    1. number
    2. String (chaine de caractère)
*/

console.log(name);

Testez votre compréhension du chapitre

Laissez votre commentaire

Précédent Suivant