string methods injs code example
Example 1: js string
`hello world`
`hello!
world!`
`hello ${who}`
escape `<a>${who}</a>`
Example 2: js string
return 'cat'.charAt(1); // returns "a"
`hello world`
`hello!
world!`
`hello ${who}`
escape `<a>${who}</a>`
return 'cat'.charAt(1); // returns "a"