Get Mystery Box with random crypto!

HACK WORLD 🌎 TUTO

Logo de la chaîne télégraphique hackworltuto - HACK WORLD 🌎 TUTO H
Logo de la chaîne télégraphique hackworltuto - HACK WORLD 🌎 TUTO
Adresse du canal : @hackworltuto
Catégories: Économie
Langue: Français
Abonnés: 2.50K
Description de la chaîne

Dans ce canal vous trouverez:
👉Gagner de l'argent 💸 en ligne
👉ɪɴᴛᴇʀɴᴇᴛ 🔗 ɢʀᴀᴛᴜɪᴛ;
👉ᴄʀᴇᴇʀ ᴜɴ ᴠɪʀᴜs 🕳️;
👉ᴘɪʀᴀᴛᴇʀ ᴜɴ ʀᴇ‌sᴇᴀᴜ 😨;
👉ᴘʀᴏɢʀᴀᴍᴍᴀᴛɪᴏɴ ᴡᴇʙ;
👉Achat et vente de cryptomonnaies;
👉 Formation diversifié
Vos recommandations en commentaire

Ratings & Reviews

3.50

2 reviews

Reviews can be left only by registered users. All reviews are moderated by admins.

5 stars

1

4 stars

0

3 stars

0

2 stars

1

1 stars

0


Les derniers messages 4

2022-06-22 06:31:29 incrémentation
a++; | a = a + 1; | a += 1;

décrémentation
a--; | a = a - 1; | a -= 1;
43 views03:31
Ouvert / Commentaire
2022-06-22 06:31:29 Simplifier l'écriture
texte1 = texte1 + texte2 ; | texte1 += texte2 ;
texte1 = texte1 + texte2 + texte3 ; | texte1 += texte2 + texte3 ;
43 views03:31
Ouvert / Commentaire
2022-06-22 06:31:29
La concatenation
Une concaténation consiste à ajouter une chaîne de caractères à la fin d'une autre ("Bonjour" + " le monde" = "Bonjour le monde")

var texte1 = "bonjour", texte2= " le", texte3=" monde !";
texte1 = texte1 + texte2 + texte3;
alert (texte1);
41 views03:31
Ouvert / Commentaire
2022-06-22 06:31:29 Simplifier l'écriture

a = a + b ; | a += b ;
a = a - b ; | a -= b ;
a = a * b ; | a *= b ;
a = a / b ; | a /= b ;


exemple
a = a + 3 ; | a += 3 ;
34 views03:31
Ouvert / Commentaire
2022-06-22 06:31:28
33 views03:31
Ouvert / Commentaire
2022-06-22 06:31:28


Titre de la page




32 views03:31
Ouvert / Commentaire
2022-06-22 06:31:28 EXEMPLES

Déclaration des variables
var a=3, b=5, c=2;

addition
a = b + c ; (a = 7)

soustraction
a = b - c ; (a = 3)

multiplication
a = b * c ; (a = 10)

division
a = b / c ; (a = 2.5)

modulo

a = b % c ; (a = 1)

NB : Le modulo est le reste entier de la division. ( 4 % 2 = 0 | 7 % 6 = 1| 15 % 6 = 3)
27 views03:31
Ouvert / Commentaire
2022-06-22 06:31:28 Déclaration des variables
var a, b, c;

addition
a = b + c ;

soustraction
a = b - c ;

multiplication
a = b * c ;

division
a = b / c ;

modulo

a = b % c ;
26 views03:31
Ouvert / Commentaire
2022-06-22 06:31:28 LES OPERATEURS ARITHMATIQUES
26 views03:31
Ouvert / Commentaire