Strings 2/5
String length:
We use the length
property to check the length of the string.
9
1
console.log(`JavaScript`.length );
1console.log(`JavaScript`.length );
Compito
Swipe to start coding
The task is to create a string variable named running
and assign the value The horse runs so fast
to it. Now check the length or number of characters in the above variable.
Soluzione
9
1
2
let running ="The horse runs so fast";
console.log(running.length);
Note: length
property also considers the spaces between the string length.
Tutto è chiaro?
Grazie per i tuoi commenti!
Sezione 3. Capitolo 20
9
1
Chieda ad AI
Chieda pure quello che desidera o provi una delle domande suggerite per iniziare la nostra conversazione