tiagomacul
Giga Sage
Options
- Post History
- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
on 12-26-2019 11:13 AM
script: how to comment functions?
To create a single line comment in JavaScript:
// This is a single line JavaScript comment
AND
To create a multiple line comment in JavaScript
/*
This is a multiple line comment
You can write so many lines as you need
*/
Introduction to javascript course