#backend
Read more stories on Hashnode
Articles with this tag
middleware in details · In a very simple language middleware are like a guard or we can say that they are like a ticket checker in a train. That are...
Top 15 Unix Commands every Developer should know ! · Unix Commands are as follows: [ cd ] is for changing directory. 2. [ ls ] is for listing all files...
Creating http server using express.js with node.js in 3 simple steps! · Step - 1 First create an empty folder where you will create your server. Now...
What can done with JavaScript · Javascript can be used for a variety of purposes beyond just front-end web development. Some of the main things you can...
concatenation in JavaScript · There are 3 main ways to concatenate strings in JavaScript: The + operator const str1 = 'Hello' const str2 =...
functions in JavaScript · Way-1 function printMe() { console.log("printing me"); } INPUT - printMe; OUTPUT - printing me Way-2 function printThis(para){...