C# Basics: Delegates

Delegates are one of the most used features of C#. They allow you to pass a function as a function pointer. It is kind of the same as a function pointer in C++.

Put simply, delegates are the same as a function pointer in C ++. They refer to another function.

How to Add a Static Member Property in a JavaScript Class

Recently while solving a problem, I came across a requirement to create a property in a JavaScript class, which needs to be shared by all the object instances. In the programming world, these types of properties are called Static Properties.

There are various scenarios when you need a static member property: