I have started to learn JavaScript on Codecademy recently and I was wondering where I could find more information about it. I am really confused with some of the terms that are being used like “elements” , “passing something through a function” , etc. Is there a website I could go to that would explain the terms?
I have started to learn JavaScript on Codecademy recently and I was wondering where
Share
Probably best to just ask whatever specific questions you have here.
An
elementis typically a DOM element which is a reference to a particular object in the web page such as a button, a div, a textarea, etc… You use the element reference to get or set properties on the DOM element, call methods on it or register callbacks for event handling.“Passing something through a function” sounds to me like “passing something into a function” which would refer to passing an argument to a function as in:
Where the five items in the parentheses are the arguments passed into the function.