let thesentence = 'I having a good day'
console.log(thesentence.substr(0,4))
the substr is strikethrough but using substring is fine
let thesentence = 'I having a good day'
console.log(thesentence.substr(0,4))
the substr is strikethrough but using substring is fine