You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var str = 'The quick brown fox jumped over the lazy dog';
str.length(); // VM2349:1 Uncaught TypeError: str.length is not a function
str.length; // 44
str.charAt(2); // "e"
str.charAt(200); // ""
str.concat(' again and again'); // "The quick brown fox jumped over the lazy dog again and again"
str; // "The quick brown fox jumped over the lazy dog"
str.includes('quick'); // true
str.endsWith('dog'); // true
str.startsWith('Foo'); // false
str.repeat(5); // "The quick brown fox jumped over the lazy dogThe quick brown fox jumped over the lazy dogThe quick brown fox jumped over the lazy dogThe quick brown fox jumped over the lazy dogThe quick brown fox jumped over the lazy dog"