I remember there was a function in node.js named shift that worked like this:
"hello".shift(/*amount*/ 1)
and it gave "ello" but now it gives error
please tell me the function name or tell me if it even exists
>Solution :
Try:
"Hello".substring(1)