Nabal Rainabal.hashnode.dev·Apr 9, 2024I learned how Right associative works in conditional chains in JavaScript.Before I moved in how did I know the importance of Right-associative? let's dive into what is associative in short: Associative in JavaScript: Associative in JavaScript describes in which order the operators with the same precedence level are evaluat...46 readsleft Associativity
Akhil Kadangodeakhil.se·Nov 8, 2023Step-by-Step Guide to Create Chain Methods in PHPCreating chain methods in PHP, also known as method chaining, involves designing your classes in such a way that methods return the object itself ($this), allowing you to call multiple methods in a single statement. Here's a basic guide on how to imp...39 readsPHP