substr
substring
slice
Given a string 'i study javascript'. Cut out the word 'study' and the word 'javascript' using three different methods (via substr, substring, slice).
'i study javascript'
'study'
'javascript'