Skip to main content

JSbooks notepad

 file:///C:/Users/Shubrajit%20Acharjee/Downloads/JavaScript%20and%20JQuery_%20Interactive%20Front-End%20Web%20Development%20(%20PDFDrive.com%20).pdf



file:///C:/Users/Shubrajit%20Acharjee/Downloads/javascript-closure.pdf




https://leanpub.com/understandinges6/read/



https://pepa.holla.cz/wp-content/uploads/2016/08/Learning-JavaScript-3rd-Edition.pdf


file:///C:/Users/Shubrajit%20Acharjee/Downloads/thejsway.pdf




http://www.r-5.org/files/books/computers/languages/escss/fp/Nicholas_C_Zakas-Understanding_ECMAScript_6-EN.pdf




http://java.ociweb.com/mark/STLJS/ES6.pdf


http://archive.oreilly.com/oreillyschool/courses/advancedjavascript/Advanced%20JavaScript%20Essentials%20v1.pdf



projects:

◾ Spock Rock Game - Confetti.js, Modules

◾ Quote Generator - Fetch, Async/Await, Quote API, CORS

◾ Picture-in-Picture - Picture-in-Picture API, Screen Capture API

◾ Bookmarks App - DOM, localStorage

◾ NASA APOD - Fetch, Async/Await, NASA API, DOM, localStorage

◾ Animated Navigation - CSS Animations

◾ Infinite Scroll - Fetch, Async/Await, Unsplash API, DOM, Scroll Event Listener

◾ Countdown App - Date, localStorage

◾ Music Player - HTML 5 Audio API

◾ Calculator - Math Methods

◾ Splash Page - DOM Basics

◾ Light/Dark Mode - DOM, localStorage

◾ Form Validation - DOM, Forms

◾ Joke Teller - Fetch, Async/Await, Joke API, Text-to-Speech

◾ Video Player - HTML 5 Video API

◾ MS Paint Clone - Advanced HTML Canvas, localStorage

◾ Pong Clone - Advanced HTML Canvas

◾ Math Sprint Game - SetInterval, DOM, Array Methods, localStorage

◾ Animated Template - Template, AOS.js

◾ Drag and Drop - Drag and Drop API, localStorage

Comments

Popular posts from this blog

Got an error while coding in django

 error is in an element name "price" in model.py. error:    return field.get_db_prep_save(self._effective_default(field), self.conne ction)   File "C:\Users\Shubrajit Acharjee\PycharmProjects\untitled\lib\site-packag es\django\db\models\fields\__init__.py", line 823, in get_db_prep_save     return self.get_db_prep_value(value, connection=connection, prepared=Fal se)   File "C:\Users\Shubrajit Acharjee\PycharmProjects\untitled\lib\site-packag es\django\db\models\fields\__init__.py", line 818, in get_db_prep_value     value = self.get_prep_value(value)   File "C:\Users\Shubrajit Acharjee\PycharmProjects\untitled\lib\site-packag es\django\db\models\fields\__init__.py", line 1776, in get_prep_value     raise e.__class__( ValueError: Field 'price' expected a number but got ''. solution:Go to migrations file and delete all the auto generated migration files related to element "price" and code correctly in models.py file and ru...