const and let are features of the new JavaScript ES6. For variable declaration, instead of the old var we can now choose between const and let. const is for values that we don’t want to change and let is like…
Category: javascript
Axios Cheatsheet for GET, POST, PUT, DELETE Requests
Axios is a promise-based HTTP client for JavaScript. It is used to send asynchronous HTTP request to REST endpoints. It can be used with plain javascript and popular front-end frameworks like React, Angular and VueJS. Below are some frequently used…
An online Drum Machine I built using Web Audio API
Hey guys today I want to share a Drum Machine application that I built using. https://www.onlinetool.in/drum-machine/. Used Web Audio API to built it. The web audio api was initially proposed by google is used for processing and synthesising audio in…
Make all Images responsive with bootstrap automatically!
Hi guys, in this post we will see how to make all images on your website responsive automatically with bootstrap. this will get rid of the problem of the images breaking out of the content area of your website on…