xxxxxxxxxx
let word = "Subscribe to Crosby Roads on YouTube!"
// From the right show 24 characters
let subResult = word.substr(word.length - 24)
console.log(subResult)
// Crosby Roads on YouTube!
xxxxxxxxxx
let word = "Subscribe to Crosby Roads on YouTube!"
// From the right show 24 characters
let subResult = word.substr(-24)
console.log(subResult)
// Crosby Roads on YouTube!