Jino Antony
ProjectsContactBlog
ProjectsContactBlog
  • Javascript
  • Apr 19, 20・3 min read

Nullish Coalescing Operator Explained

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.

  • Javascript
  • Apr 14, 20・3 min read

Optional Chaining In Javascript

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.

  • PHP
  • Dec 1, 19・3 min read

How Arrow Functions Can Improve Your Code

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
  • Jan 21, 19・3 min read

10 Hidden Laravel Eloquent Features You May Not Know

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.

  • Laravel
  • Jan 15, 19・4 min read

Multi-User API Authentication Using Laravel JWT

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.


  • 1
  • 2
  • 3
Jino Antony ©2025 | All rights are reserved | Built with Gatsby