get length of string in javascript code example

Example 1: js string length

let str = "foo";
console.log(str.length);
// 3

Example 2: javascript string lentrh

var myString = "string test";
var stringLength = myString.length;

console.log(stringLength); // Will return 11 because myString 
// 							  is 11 characters long...

Example 3: javascript check string lenght

let SomeString = "Example";


console.log(SomeString.length)

Example 4: how to check how many strings are in a sentence javascript

function WordCounter (str) {
	var words = str.split(" ").length;
	return words;
}
// this should work!

Tags:

Php Example