// slice() Method const str = 'Coding Beauty'; const first2 = str.slice(0, 2); console.log(first2); // Co const first6 = str.slice(0, 6); console.log(first6); // Coding const first8 = str.slice(0, 8); console.log(first8); // Coding B