webmanz 2 Report post Posted March 27, 2018 (edited) example from chapter 2: function sniffer(message) Q: Is sniffer a made up word or does it have some special standing in JS with things like 'alert' and 'prompt'? Q: Are alert and prompt js keywords too? Edited March 27, 2018 by webmanz Share this post Link to post Share on other sites
administrator 152 Report post Posted March 27, 2018 Hi, Sniffer is something I just made up. Alert and prompt are methods built into JS. Share this post Link to post Share on other sites
webmanz 2 Report post Posted March 27, 2018 8 hours ago, administrator said: Alert and prompt are methods built into JS. 1. We can't say they are keywords though, on par with function and var? 2. Can we say function and var are built in methods of JS too? 3. Are built in methods the same thing as a 'keyword'? Share this post Link to post Share on other sites
administrator 152 Report post Posted March 30, 2018 Hi, Good questions. I don't believe function names are keywords ... so there would be no conflict if you had a variable named 'alert'. #1. No. They are not the same. #2. Hmm ... this is getting into the details of the JS structure. JS has both functions and methods .... in a practical sense, it is a distinction without a difference, but functions are not methods because functions can exist outside on an object. #3. No Stef Share this post Link to post Share on other sites