SBSantosh Balchandraninsanbal13.hashnode.dev·Jun 11, 2021 · 4 min readAccessing Data sent by Client on the Server side using Node.jsData can be sent between the server and the client in different formats like JSON object, form data, plain text, etc. All this data is converted to a string format before it is transferred either from client to server or the other way. To interpret t...00
SBSantosh Balchandraninsanbal13.hashnode.dev·Dec 9, 2020 · 5 min readManipulating Array using sort() in JavaScriptIn this blog, I am going to discuss the sort method in javascript which is handy to sort the elements of an array. The method works as expected in the case of a string array but it does not work in the expected manner in case of a number array. Let u...00
SBSantosh Balchandraninsanbal13.hashnode.dev·Aug 24, 2020 · 11 min readIntroduction to Git and GitHubGit is a version control system. Version control system keeps track of changes to a file or files over time. This feature helps us to go back to a specific version later. Why use Git? During the process of software development, the files pertaining t...01P