0
JavaScript
Drag and drop from the options below to declare a function and call it, by passing "Test" as the argument: myAlert(txt) { alert("Hello " + txt); } ;
2 Answers
+ 5
Here it is :
function myAlert(txt) {
alert("Hello " + txt);
}
myAlert("Test");
0
Tnx