Coder Social home page Coder Social logo

alok722 / namaste-javascript-notes Goto Github PK

View Code? Open in Web Editor NEW
1.3K 14.0 578.0 31.05 MB

It maintains my version of namaste js notes which I learnt from Namaste JS YouTube Playlist by Akshay Saini (@akshaymarch7).

Home Page: https://alok722.github.io/namaste-javascript-notes/dist/lectures.html

License: MIT License

JavaScript 100.00%
javascript javascript-notes namaste-javascript namaste-javascript-course namaste-js namaste-js-notes

namaste-javascript-notes's Introduction

Welcome to Namaste Javascript Notes ๐Ÿš€

Namaste-JavaScript-Banner

โ“ what it is

This repo maintains my version of javascript notes which I learned from the famous Namaste Javascript Youtube Series by Akshay Saini.



๐Ÿ“ Content List

๐Ÿ“Œ Season 1

๐Ÿ“Œ Season 2


โœจ Testimonial

From the creator of Namaste Javascript himself, ๐Ÿ™Œ Testimonial

๐Ÿ‘ค Author

alok raj ([email protected])


๐Ÿค Contribution Guidelines

  • Please create an issue with your suggestion, if found valid I would push the fix.
  • Please, Don't open the PR directly without conversation.

โœจ Show your support

Give a โญ๏ธ if this project helped you!

namaste-javascript-notes's People

Contributors

alok722 avatar anjali1102 avatar jay-thesia avatar khansamad99 avatar prepts avatar rajat-mehra05 avatar snavne3t avatar thatbeautifuldream avatar theprakashkumar avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

namaste-javascript-notes's Issues

Episode 1: Execution Context

You wrote opposite definition in synchronous , single threaded language.

It will be -

Single-threaded:- One command at a time.
Synchronous:- In a specific synchronous order.

typo issue

image

Present in Episode 7 : The Scope Chain, Scope & Lexical Environment

Embed Youtube Video in Notes

Instead of the Image of the Topic, we can embed the YouTube video there?
In the watch live on YouTube section, we can also embed the video.

Uploading Screenshot (1059).pngโ€ฆ

Error in Episode 1

Previously -
Synchronous:- One command at a time.
Single-threaded:- In a specific synchronous order.

Correct -
Synchronous:- In a specific synchronous order.
Single-threaded:- One command at a time.

Hoisting in JavaScript (variables & functions) ( output issue)

getName(); // undefined
console.log(getName); // Uncaught TypeError: getName is not a function
var getName = function () {
    console.log("Namaste JavaScript");
}
// it is undefined because in arrow function behaves as a variable and not function.

Below is the correct one

getName(); // TypeError: getName is not a function and after this line code will not execute.
console.log(getName); 
var getName = function () {
    console.log("Namaste JavaScript");
}
// it is undefined because in arrow function behaves as a variable and not function.

Naming convention

  • In the notes directory, markdown files are named as lecture-1.md, lecture-2.md etc.
  • It disrupts the order in GitHub.
  • Instead numbering can be done in double digits.

Ex.
lecture-01.md
lecture-02.md
.
.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.