In this video, learn to create a Node.js API to perform CRUD operations on a database in SQL Server. https://www.youtube.com/watch?v=Uvy_BlgwfLI You can find the source code here : https://github.com/debugmodedotnet/sqlservernodejsrestapi For notifications of the further videos, subscribe to the <geek97/> Youtube channel here : https://www.youtube.com/c/geek97
Month: August 2020
Master RxJS: Part 2 – What is an observer
This is the second post in the Master RxJS series. The first post is a video tutorial that explains, why RxJS Watch it here: https://www.youtube.com/watch?v=GfuGIh-Bmxw In this post, we will discuss an observer in RxJS. An observer is an object with three call-back functions to subscribe to the notifications from an Observable. Too much technical … Continue reading Master RxJS: Part 2 – What is an observer
How to make the length of an Array read-only in JavaScript
Sometimes, you may come across a requirement that once the array is created, its length should not be changed. In this blog post, let us explore how you can achieve that. Let us say you have an array as shown below, let foo = ['1', '11']; console.log(foo.length); // 2 console.log(foo[1]); //11 As you see, the length of the array is 2, and … Continue reading How to make the length of an Array read-only in JavaScript