var RemoveAt = function (string, index){ if (index === 0) { return string.slice(1); } else { return string.slice(0, index - 1) + string.slice(index); } } ; module.exports = RemoveAt;