Posts

Showing posts with the label JavaScriprt

JavaScript Cheatsheet

Image
What is JavaScript? JavaScript, often abbreviated JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. Over 97% of websites use JavaScript on the client side for web page behavior, often incorporating third-party libraries. All major web browsers have a dedicated JavaScript engine to execute JavaScript on users' devices. JavaScript is a high-level, often just-in-time compiled language that conforms to the ECMAScript standard. It has dynamic typing, prototype-based object-orientation, and first-class functions. It is multi-paradigm, supporting event-driven, functional, and imperative programming styles. It has application programming interfaces (APIs) for working with text, dates, regular expressions, standard data structures, and the Document Object Model (DOM). JavaScript Basics Set of JavaScript basic syntax to add, execute and write basic programming paradigms in Javascript  On Page Script Adding internal JavaScri...

How to make a Snake game using HTML , CSS and JavaScript

Image
Introduction : A Snake Game is a greate project for improving your skills in Web Development. You can improve your skills in HTML , CSS and JavaScript. You can also learn how Animation Frame works in HTML, Advanced CSS properties and also some intermediate level JavaScript Language in this project.You can mention this project in your resume by some further improving. So lets start... Setting Up The Project:  To start the creating the project here we need  is a Text Editor or an IDE. In this tutorial we will use Microsoft Visual Studio Code (VS Code)   .  Please download and install VS Code from here .   Click here to learn how to download VS Code Now another thing you need to downlod is an extension called Live Server . It will help us to use the live reload for our project.   After succesful installation of VS Code open it and goto Extension manager and search for Live Server and install it. Now we are ready to start the project. Start the Project: N...