0
Activate function using if
How can activate a function using if Exemple Function test() { What ever what ever } If (what ever what ever) And then activate that function here
1 Respuesta
+ 5
//hey, try this
function test(){
console.log("if statememt was true now try changing the condition to false");}
if(true){
test();}