Profile image of Turps
Submitted by Turps
over 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.

Profile image of hrsetyono
Submitted by hrsetyono
over 11 years