You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
//substr(): It takes two arguments,the starting index and number of characters to slice.
|
|
let string = 'JavaScript'
|
|
console.log(string.substr(4,6)) // Script
|
|
let country = 'Finland'
|
|
console.log(country.substr(3, 4)) // land
|