substr
substring
slice
Soit une chaîne 'i study javascript'. Découpez le mot 'study' et le mot 'javascript' de trois manières différentes (via substr, substring, slice).
'i study javascript'
'study'
'javascript'