The preprocessor is the first stage of the compilation process in C++ that takes place ahead of the actual code compilation. It handles code that is […]
A shortcut command that combines git add . and git commit -m [commit_message]:-> git commit -am “easy peasy” An even shorter method for creating an alias:-> […]
The [[maybe_unused]] attribute is created for indicating in code that certain logic might not be used. This is often linked to preprocessor conditions where this might […]
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 […]
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 […]