Funny green text in console after running setTimeout function
I'm running the linked repl -- it has a delay function in it. When I run the code, there's a bunch of green text that shows up. What is it for? Does it signify something?
I'm running the linked repl -- it has a delay function in it. When I run the code, there's a bunch of green text that shows up. What is it for? Does it signify something?
Green text shows the output of the last called function. In this case, what shows up is all data that the function
setTimeout
returns@Geocube101 Ok, thanks!
@CarlyRaeJepsenS You're welcome