var johnson = button.addEventListener('click', function() {
});
In what ways i can use this variable name. can i call the johnson as a function somewhere?
In what ways i can use this variable name. can i call the johnson as a function somewhere? |
|||
|
|
No, because you aren't assigning addEventListener function to the variable, you are assigning the returned value from executing the function (which in this case is actually nothing look here for an example of the return value: http://jsfiddle.net/DKyhW/2/ ). To assign the function you either need to do:
or
|
||||
|
|
|
You can certainly used a named function or a variable that points to a function as an event listener, though:
Now you can call that listener function by clicking the button, or by calling
|
|||
|
|
|
Since Maybe you wanted to something like this:
|
|||
|
|