DEV Community

Discussion on: I've Rediscovered How Fun Javascript Can Be, Ask Me Anything!

Collapse
 
ryands17 profile image
Ryan Dsouza

What was the one feature in JS that helped you out the most while solving a given problem or issue?

Collapse
 
scrabill profile image
Shannon Crabill

It's not ideal but I still use a lot of console.logs() to quickly test my outputs or to see if my functions are firing. Using typeof has also been helpful.

Collapse
 
anupktarafder profile image
AnupKTarafder

Everyone I know, uses this. I have at least one console log in every function.