I want to ask my ignorance about javascript I gave a little description, hopefully I can understand what I mean
example:
var a = `hello everyone`
var b = a.slice (6)
console.log (b)
output = everyone
how can I change the slice from the back like this:
var a = `hello everyone`
var b = a.slice (3)
console.log (b)
output = one