리트코드 - #28 Find the Index of the First Occurrence in a String (Medium)
var strStr = function(haystack, needle) { return haystack.indexOf(needle); };