0
function greet(name){ Console.log ('Hello' + name); } greet('shree');
Help, javascript function is not working...
2 Antworten
0
Showing on not define
0
As per Jay Matthews suggestion
function greet(name){
console.log ('Hello ' + name);
}
greet('shree');