One habit that consistently stands out among all the successful people, is their deep love for book and reading. Books have always been a guiding force for those who achieve great things in life. They teach us to dream, to envision a future beyond the present, and to become a guiding light on our journey. […]
Demystifying complex messaging applications using WebSocket!
Have you ever tried to create chat applications? Whenever you want bidirectional communication(server to client and client to server), WebSocket is the new-age solution. But setting up WebSocket in an efficient way is still a key. You may find various articles over this which makes set-up easy, but I think it is inefficient and also […]
JavaScript Variables: The idea behind Var, Let, and Const
Is var, let and const are different?? And if yes then how?? You might have had heard this question in every JavaScript interview. Let’s understand the idea behind it. In JavaScript to store any data into the variable, you must know the following things. Declaration of variable // let a; Initialization of variable // a […]