-
Beta Was this translation helpful? Give feedback.
Replies: 7 comments 12 replies
-
@ThisisOat Open this on Google Chrome, go to settings => More Tools => Developer Tools => Console. You will see that there. |
Beta Was this translation helpful? Give feedback.
-
@ThisisOat You forgot to call the function hii() at the bottom its never been called therefore it's not executed thats why you getting no output, also make sure you declare the function hii(){
console.log("hii");
- let (toto) = 5;
+ let toto = 5;
console.log(toto);
}
+ hii(); |
Beta Was this translation helpful? Give feedback.
-
ok right on i appreciate it...I'm still not getting it and don't want to waste anymore time or y'all's time either...I am pretty tired so I think ill just sleep on it and come back to it in the morning with a fresh mind. It seems like something super simple that I'm just not getting, maybe some sleep will fix it...ya'll have a blessed night...Thank you ! |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
For some reason I'm still just getting the blank terminal. |
Beta Was this translation helpful? Give feedback.
-
wait I forgot to add the async...I just fixed it but still the same thing |
Beta Was this translation helpful? Give feedback.
-
Sheesh. So the problem was that there was multiple formatters open for the file (Rookie Mistake) -_- as well as me not calling the function correctly. The notification bell on the bottom right was trying to tell me to pick a default formatter, but I didn't notice it till this morning. As soon as I set one to the default formatter and called the function correctly it started working!! Big thanks to both of you @technophile-04 and @ali-thegilfoyle for your patience and willingness to help. Many blessings to both of y'all. Have an amazing day!!!! Here is a pic of it working with the correct format. |
Beta Was this translation helpful? Give feedback.
Sheesh. So the problem was that there was multiple formatters open for the file (Rookie Mistake) -_- as well as me not calling the function correctly. The notification bell on the bottom right was trying to tell me to pick a default formatter, but I didn't notice it till this morning. As soon as I set one to the default formatter and called the function correctly it started working!! Big thanks to both of you @technophile-04 and @ali-thegilfoyle for your patience and willingness to help. Many blessings to both of y'all. Have an amazing day!!!! Here is a pic of it working with the correct format.