The algorithms library of C++ can sometimes be a little inconvenient since most of them requires a begin and an end iterator to operate (1). Utilizing […]
Scope Resolution Operator (::)Ternary or Conditional Operator (?:)Member Access or Dot operator (.)Pointer-to-member Operator (.*) Object size Operator (sizeof)Object type Operator(typeid) could not be overloaded in […]
Hooks in general enable the extraction and reuse of stateful logic that is common across multiple components without the burden of higher order components or render […]
Both props and state are plain JavaScript objects. While both of them holdinformation that influences the output of render, they are different in theirfunctionality with respect […]
These attributes allow the compiler to optimize for the case where paths of execution including these statements are more or less likely than other alternative paths. […]
The nullish coalescing operator (??) is a logical operator that returns its right-hand side operand when its left-hand side operand is null or undefined and otherwise […]
C++17 introduces [[nodiscard]] attribute to let the compiler deduce that the return value of a function or method must be handled by a properly assigned value. […]