+ 7
What is a global function
9 Respostas
+ 7
A global function can be accessed from anywhere in the program.
+ 5
Lisa F
js has inheritance since es6
+ 4
an example of a global function:
window.onload = function()
{
statements
};
+ 3
Haris ok "no inheritance like java" javascript has prototypal inheritance which is different. imo in javascript it is best to learn the basics of the language first. for javascript that means learn prototypes first. !!
+ 1
javascript doesn't have the main object. that's java. inheritance is not like java inheritance.
0
how to create html website
0
local functions exist too?