You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30-Days-Of-JavaScript/01_Day_Introduction/day1/helloworld.js

10 lines
422 B

console.log("Hello, World!")
//1. Write a single line comment which says, comments can make code readable
//comments can make code readable
//2. Write another single comment which says, Welcome to 30DaysOfJavaScript
//Welcome to 30DaysOfjavaScript
//3. Write a multiline comment which says, comments can make code readable, easy to reuse and informative
/*comments can make code Readable,
easy to reuse and informative*/