Day 11 – Functions | Reusable Loan Calculator for Nigerian SMEs
🌍 Problem Background Nigerian / African Context Many Nigerian SMEs: - Borrow from microfinance banks or cooperative societies - Need to calculate loan repayme...
🌍 Problem Background Nigerian / African Context Many Nigerian SMEs: - Borrow from microfinance banks or cooperative societies - Need to calculate loan repayme...
I learned about functions with inputs and the difference between positional and keyword arguments. For today’s project I built a simplified version of the Caesa...
Day 26 – Phase 3: Development The 60‑Day Web3 Journey – Solidity Basics After a short two‑day pause in the 60‑Day Web3 journey, it’s time to hit play again and...
markdown !Cover image for Shopify Scripts Functions: A Practical Migration Playbookhttps://media2.dev.to/dynamic/image/width=1000,height=420,fit=cover,gravity=a...
As part of Codecademy's portfolio project series, I built an interactive Tic‑Tac‑Toe game that runs entirely in the terminal. This was my first complete Python...
If you’ve ever looked at a Python program and thought, “This is getting messy”, you’re not alone As programs grow, managing code becomes harder unless you orga...
I avoided closures for longer than I care to admit. Not deliberately. I just kept telling myself I understood them because I could repeat the usual line: “a clo...
!Cover image for Making Python Modules Callable: Introducing Cadulehttps://media2.dev.to/dynamic/image/width=1000,height=420,fit=cover,gravity=auto,format=auto/...
Is this a function in JavaScript? javascript function fiveSquared { return 5 5; } Technically, yes. However, fiveSquared lacks the reusability that a real‑world...
Functions A function is a block of code that performs a specific task and can be reused. There are three ways to define a function in JavaScript: 1. Function D...
Using Functions In this article, you’ll learn about functions. By using functions, you can reuse specific processes and write cleaner, more maintainable code....