Can I alias JavaScript keywords? For example, can I set up a shorthand for function to be func:
func add(a, b){
return a + b;
}
or a shortcut to delete:
del a;
|
Can I alias JavaScript keywords? For example, can I set up a shorthand for
or a shortcut to
|
|||
| show 1 more comment |
|
No you cannot. Naming keywords are something you don't have any control over. |
|||
|
|
|
That's a very good question. I am all about cutting bytes. Every byte has to be downloaded by the end-user. JavaScript is very readable to people who know how to read it. But the answer is no, and that's a shame. |
|||
|
|
tionputting you over some arbitrary bandwidth cap? Obfuscate, or take CoffeeScript and put a layer on it. – Dave Newton Dec 16 '11 at 19:20