0
Code Challenge 24.2 âLoadingâ
function showPreloader() { //complete the function return ("Loading"); } showPreLoader(); //call the function Hereâs my code for the challenge and it wonât work. Iâve also replaced return with alert and console.log and it still wonât execute. Any help will be much appreciated!
3 Respostas
+ 5
If you use return then you have to print returned value otherwise use console.log to print inside function.
+ 2
console.log(showPreloader());
+ 1
Thank you for the help!