This forum is now read-only. Please use our new forums! Go to forums

banner
Close banner
0 points
Submitted by Boris de Graaff
about 11 years

What is the difference between console.log and print

I just dont get it.

console.log(5*4);

prints out 20, and so does

print(5*4);

So what is the difference?!?

Answer 513dd6ba05d6f4318a006aee

2 votes

Permalink

print will just print the text to console. console.log() actually records it and we can use it for many purposes like email it for bug report.

points
Submitted by Henner Setyono
about 11 years