Micro-pattern: IIFE and Return-Early
Immediately Invoked Function Expression (IIFE)
If you came from JavaScript background you will most likely have encountered this pattern. Remember JQuery?
;(function($) {
$('.spoilerBtn').click(function() {
var button = $(this).find('.spo...
blog.rakha.dev5 min read