Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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"
Source by www.google.com #
 
PREVIOUS NEXT
Tagged: #js #substring
ADD COMMENT
Topic
Name
7+1 =