var MM = '\' + obj[0]['MM '] + '/';
I get two errors while using this code...
missing; before statement and unterminated string literal
I get two errors while using this code...
|
||||
|
|
The character For exampe if you want the string
and if you want single quotes in the string you can do the opposite
But what if you want both kind of quotes in the same string? This is where the escape
Basically Note that the very same character is also used in regular expressions... for example if you want to look for an open bracket The escape is also used to do the opposite... in a string if you put a backslash in front of a normal character you are telling javascript that that character is indeed special... for example
In the above line the You may now wonder... what if I need a backslash character in my string? Just double it in that case. In your code for example just use Here is a table for the possible meanings of backslash in strings
|
||||
|
|
|
|
|||
|
|
|
You need to properly escape the backslash:
Being escape character, the JS "compiler" is expecting another character to follow, for example It is also mentioned in Douglas Crockford book. |
||||
|
|
|
You are forgetting to escape '\' Do this:
|
|||
|
|