Cutting strings in JavaScript

Given the string 'I'm learning javascript!'. Cut out the word 'learn' and the word 'javascript' in three different ways (with substr, substring, slice).

enru