Some guy showed me a piece of javascript code where there's a function called e(); that seems to be native to Javascript
This guy put a string parameter to this function like e(dd);, but I don't know what this function is about. I don't find any documentation about this function.
Did you guys know something about this ? Thank you, this is for my work...
-
If you're looking for a JavaScript function please look in google. There are tenths of websites with the list of standard JS functions.Mariusz Jamro– Mariusz Jamro2012年02月20日 09:08:38 +00:00Commented Feb 20, 2012 at 9:08
-
1That guy tricked you. See here the proof - e is not defined.user447356– user4473562012年02月20日 09:09:51 +00:00Commented Feb 20, 2012 at 9:09
2 Answers 2
There is no native function e. In the past, before using things like jQuery, I used e as an alias to document.getElementByID. This might have been common practice, but in fact e could be anything depending on the developer.
Comments
There is no such function in JS. This should be some user-defined function.