Linking Object or Inheriting From Objects
Linking objects is key to understanding the prototype system as it leads upto complex patterns involving constructor and subclassing
Linking objects is key to understanding the prototype system as it leads upto complex patterns involving constructor and subclassing
The default binding of the "this" keyword in JavaScript refers to the global object when used in a standalone function.
Implicit binding is the automatic binding of the "this" keyword to the object where a method is invoked, based on the calling context.
Inheritance in JavaScript allows objects to inherit(actually link) to properties and methods of other objects, creating a hierarchical relationship between them.
Discover the power of JavaScript, the core technology of the web, bringing interactivity and dynamic behavior to websites
The "this" keyword in JavaScript refers to the current object or context in which the code is being executed
Explicit binding refers to the automatic binding of the this keyword to the object that it is called from.
As my website uses light and dark theme it was important for the icons and other SVGs that I use to support it.
Building a website in 2023 involves a combination of modern technologies and best practices. From automatic code splitting to server-side rendering and easy deployment, Next.js provides a range of features that make building websites a breeze.
A python lambda function is the easiest way to start exploring the AWS ecosystem. We will later use an API Gateway that invokes the lambda.
Regular Merge Sort and CLRS Merge Sort are essentially the same algorithm, but CLRS Merge Sort is a more specific implementation that follows the algorithm as described in the textbook "Introduction to Algorithms" by Cormen, Leiserson, Rivest, and Stein.
Merge sort is a standard divide and conquer algorithm that scales.
Quicksort is a very neat algorithm that sorts with a very good runtime.