Computer is a Complex Machine and its use in the Complex world should reduce Complexity
let str = "Apple, Banana, Kiwi";
let part = str.substring(7, 13);
console.log("part of Apple, Banana, Kiwi is " + part)
let part = str.substr(7, 6);
No comments:
Post a Comment