9 Extremely Powerful JavaScript Hacks

I optimize. Mostly users don't care about optimized code if the site isn't working in their Internet Explorer 11 browser. https://dev.to/razgandeanu/9-extremely-powerful-javascript-hacks-4g3p
MORE...Difference between a class and an object

In short, a class is the definition of an object, and an object is instance of a class. We can look at the class as a template of the object: it describes all the properties, methods, states and behaviors that the implementing object will have. As mentioned, an object is an instance of a class, and a class does not become an object until it is i...
MORE...Architectural Styles vs. Architectural Patterns vs Design Patterns

Architectural Styles Architectural styles tell us, in very broad strokes, how to organise our code. It’s the highest level of granularity and it specifies layers, high-level modules of the application. Architectural Patterns A pattern is a recurring solution to a recurring problem. In the case of Architectural Patterns, they solve th...
MORE...Identity In ASP.NET MVC 5

Identity is a secured way of authentication methods in web applications. It is used for identifying the authorized user. https://www.c-sharpcorner.com/article/create-identity-in-simple-ways-using-asp-net-mvc-5/
MORE...Assembly in C# or .NET
An assembly is the compiled output of your code, typically a DLL, but your EXE is also an assembly. It's the smallest unit of deployment for any .NET project. https://stackoverflow.com/questions/1362242/what-exactly-is-an-assembly-in-c-sharp-or-net
MORE...