Skip to content

Latest commit

 

History

History
39 lines (35 loc) · 1.96 KB

File metadata and controls

39 lines (35 loc) · 1.96 KB

About this document

Name: Javascript notes
Created by: Rohan S M
Created on: Jan 17, 2026
Info: This is a beginner friendly notes for javascript learners. If you want to learn advanced javasrcipt use this documentation as a first step towards your journey.

Important

This isn’t a complete JavaScript guide, just beginner-level notes 🐣

What you will learn

Basics of javascript like variables, operators, functions etc that are needed as a basic knowledge for learning angular, react, express, node and other javascript libraries and frameworks

Tip

Even if you don't want to code and just learn, it is fine :)

No server setup is required—you can run simple JavaScript commands by following these steps.

  • Create a html file, say index.html
  • Create a js file beside it, say script.js
  • Connect the js file to the html file via script tag
     <script src="script.js"></script>

With the files set up, open the HTML file in your browser and move on to editing the JS file.

  • Install VS code text editor on your system.
  • Install the extension called Live server in VS code.
  • Right click on index.html
  • Select Open with live server
  • Right click on the webpage in your browser
  • Select Inspect
  • Developer tools is opened
  • Go to Console to find the output of your javascript commands
  • Whenever you edit the js file and save it, immediately output is shown in the console

Note

You can also execute js commands directly in console of any webpage image

ⓘ This repository is licensed under MIT License

Start Learning -->