Answers for "how to use substring values in javascript"

67

js substring

// the substring method returns a string out of another string

const str = 'Mozilla';

console.log(str.substring(1, 3));
// expected output: "oz"

console.log(str.substring(2));
// expected output: "zilla"
Posted by: Guest on March-17-2020
33

substring javascript

var str = "Hello world!";
var res = str.substring(1, 4); //ell
Posted by: Guest on December-25-2019

Code answers related to "how to use substring values in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language