Slice Example
/*Use string concatenation and two slice() methods to print
'JS' from 'JavaScript'.*/
let language = 'JavaScript';
console.log(language.slice(0,1)+language.slice(4,5));
//JS
Slice Example
/*Use string concatenation and two slice() methods to print
'JS' from 'JavaScript'.*/
let language = 'JavaScript';
console.log(language.slice(0,1)+language.slice(4,5));
//JS
slice javascript
const string="Hi my name is mezen";
string.slice (2); // return string without the character of index 2;
string.slice (6); // return string without the character of index 6;
string.slice (3,7) /* return 'my na' (m of index 3; a of index 7) including the
blank spaces */
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us