Answers for "Substring in Javascript using substring"

1

Substring in Javascript using substring

const str = "Learning to code";

// substring between index 2 and index 5
console.log(str.substring(2, 5));
// substring between index 0 and index 4
console.log(str.substring(0, 4));

// using substring() method without endIndex
console.log(str.substring(2));
console.log(str.substring(5));
Posted by: Guest on December-23-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language