Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

typescript substring

var str = "Apples are round, and apples are juicy."; 
console.log("(1,2): "    + str.substring(1,2)); 
console.log("(0,10): "   + str.substring(0, 10)); 
console.log("(5): "      + str.substring(5));
Source by www.codingninjas.com #
 
PREVIOUS NEXT
Tagged: #typescript #substring
ADD COMMENT
Topic
Name
3+4 =