JavaScript
'steve'.length
: num characters in s. 'steve'.charAt(1)
: character at position 1. 'steve'.substring(1,4)
: second, third, and fourth
characters.'steve'.indexOf('e')
:
first position of 'e'. Number('1.0') + Number('2')
: converts strings to a number. 9 of 65