var a = 'goodbye earthling'; 'good'+'bye';// 'goodbye'; concatenates strings a.length;// 17 length NOT a function so no () a.indexOf('a');// 9 a.lastIndexOf('g'); // 16 a.charAt(3); // 'd' a.split('t');//c[0] = 'goodbye ear'; c[1]='hling'; a.split(''); //splits into an array of characters a.substring(4,6); // 'by'; substring(from, to) a.substring(4);//'bye earthling';to end of string a.substr(5,5);// 'ye ea'; substr(from,N) 'ABC'.toLowerCase();// 'abc'; a.toUpperCase(); // 'GOODBYE EARTHLING'
Output: