Javascript is one of the most versatile and used programming language today. To built websites (both frontend and backend) to build a mobile app or to built a desktop app and for some automation javascript is being used. Here are some things I learnt about javascript today.
How to add Javascript in website?
- You can use the tag
scriptas `. - Or you can use the tag
scriptas;html <script> //CODE GOES HERE </script>## Basic code I have written today - Basic Hello World
javascript alert("Hello World"); console.log("Hello World"); - Basic I/O
javascript let name = prompt("Enter your name", "Eg. Jhon Doe"); alert(name)
Log in or sign up for Devpost to join the conversation.