+ 4
Hi! you created a function, but forgot to call it
+ 3
try to find the answer yourself. Ive already given you a clue. after you create a function, you must call it by name. repeat the function lesson or search for this information on the Internet
+ 1
AnswersValue() ;
Should be included, you have to call the function before it will work
0
Lesson 24.1 your js course
0
You forgot to call the function
function AnswersValue(){
console.log("hi")
}
AnswersValue();
- 2
Hello