Have this code:
var a = 'Start';
var b = ' here';
return (document.querySelectorAll + "").toString().toLowerCase().indexOf(a + b) == -1;
After Google Closure Compiler, this code will be:
return (document.querySelectorAll + "").toString().toLowerCase().indexOf('Start here') == -1;
How to prevent changing this string because I don't need in parameter of indexOf 'Start here', very important that will be exactly 'a + b'? Do I have specific keys above this code that will explain GCC to not compile this code/string?
a + bthen why not use'a + b'instead ofa + binindexOf?