Sergey Shishkinserj-aleks.hashnode.dev·Feb 6, 2025methodsТри функции дня … или метода … короче, символы, относящиеся к концепции объектной ориентируемости, которая здесь уже упоминалась, при чем в контексте базы данных. met, method и methods. meth - эта функция обычно не вызывается напрямую, а используется...picolisp
Sundram Kumararraymethodsundram.hashnode.dev·Feb 5, 2025Mastering Array Methods with Uncle Ji!In a small town in India, where the streets are always bustling with the aroma of fresh samosas and the sound of rickshaws, there was a wise old man named Uncle Ji. He owned a little sweet shop and loved telling stories to anyone who passed by. One d...19 likes·51 readsChaiCode
WAQAS AJMALtech-logix.hashnode.dev·Feb 4, 2025Hit Sixes with JavaScript🏏 Javascript Introduction: Code Like a Captain JavaScript isn’t just code it’s a powerhouse for taming data, where arrays and objects act as your ultimate playmakers. Think of arrays as your batting order (a lineup of values) and objects as player p...21 likes·83 readsxpertlogix
karankaran5772.hashnode.dev·Feb 3, 2025Top 10 JS_arrayMethodsArrays in JS Arrays in JS ate the non-preemptive data types. Arrays are a special type of object. The ‘typeof’ operator in JavaScript returns "object" for arrays. Arrays are the datatypes that have values(data) of similar data types. When we declare ...13 likes·73 readsChaiCode
DevShubhcleaner-code-in-agile.hashnode.dev·Feb 3, 2025Boost Agile Software with Essential Clean Code StrategiesIn the fast-paced world of software development, writing clean and maintainable code is crucial for building agile applications that can adapt to changing requirements. Clean code is not just about aesthetics; it's about creating a codebase that is e...agile
Ajink Guptaunigeek.org·Jan 24, 2025Java Methods: Writing Reusable Code - Day 08Methods in Java are a core concept that enables you to write modular, reusable, and clean code. They allow you to group a set of statements into a single unit, which can be executed when called. This makes your code more organized, readable, and effi...Java Jumpstart Series 🌟Java
Saurabh Mahajanblog.saurabhmahajan.com·Jan 20, 2025Clean Code - Part-4: Functions/MethodsIn the realm of clean code, it's crucial that both the call to a function and its definition are clear and easy to understand. When invoking a function, readability is key, including clear argument orders. Equally important is the ease of working wit...code
Lim Woojaejaylog.hashnode.dev·Dec 15, 2024[Python] Magic MethodWhat is a magic method? Magic methods, also known as dunder methods (short for "double underscore"), are special methods in Python that start and end with double underscores. They automatically invoked by python to perform specific operations. Exampl...Pythonpython magic method
Shivam Dubeycodefarms.in·Nov 25, 2024Mastering Go: A Beginner's Journey into Structs and MethodsIn Go, structs and methods are powerful tools for organizing and managing data. Structs allow you to create custom data types, while methods help you associate functions with those data types. This combination is essential for writing clean and modul...Golangstruct and methods
gayatri kumargeekee.hashnode.dev·Nov 16, 2024Classes and Objects: Building a JavaScript Universe!Picture yourself as the creator of a universe. Every planet you make has its own unique characteristics, like its size, color, and the speed at which it orbits its star. In the world of JavaScript, we can build and organize these planets using classe...30 likesWeb Developmentjs