This forum is now read-only. Please use our new forums! Go to forums
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
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.
Popular free courses
- Free Course
Learn SQL
In this SQL course, you'll learn how to manage large datasets and analyze real data using the standard data management language.Beginner friendly,4 LessonsLanguage Fluency - Free Course
Learn JavaScript
Learn how to use JavaScript — a powerful and flexible programming language for adding website interactivity.Beginner friendly,11 LessonsLanguage Fluency - Free Course
Learn HTML
Start at the beginning by learning HTML basics — an important foundation for building and editing web pages.Beginner friendly,6 LessonsLanguage Fluency