Nullish coalescing operator is a new operator in javascript, which is actually an ES2020 specification. It is a logical operator which returns its RHS operand when the LHS operand is nullish (null or undefined), otherwise returns its LHS operand.
Optional Chaining is a new feature available in Javascript. It is actually a ES2020 specification. Optional chaining allows developers to write code which are more readable and less verbose.
Arrow Functions aka Short Closures is a new feature available in PHP 7.4. The new version of PHP comes with various new features, out of which arrow functions are the most awaited one. In this article I want to show you how arrow functions can improve your code.
Laravel is a feature-rich framework. However, you cannot find all the available features in the official documentation. Here are some features that you may not know.
RESTful API development using Laravel is quite easy. Laravel provides built-in support for API development using Laravel Passport and a rich ecosystem with tons of packages makes development a breeze.