Hi There,
I'm Ahmad
i am into
About MeI am a Full-Stack developer based in kerala, India. . I am very passionate about improving my coding skills & developing applications & websites. I build WebApps and Websites using MERN Stack. Working for myself to improve my skills. Love to build Full-Stack clones.
email : ahmadshjahan3000@gmail.com
place : kerala, India - 691534
Ready to bring your ideas to life? Click below to book your website development!
Book Your WebsiteStay updated with the latest trends, tips, and tutorials in web development and coding. Explore insights into our development process and watch video tutorials to enhance your skills.
Explore emerging trends in responsive design, minimalism, and interactive user experiences.
Read MoreLearn the differences and best use cases for CSS Grid and Flexbox layouts.
Read MoreLearn to code with MrCode
Learn data analysis, machine learning, and visualization
Download Syllabus Start LearningStay updated on new courses, resources, and industry news
Subscribe to Newsletter Follow on Social Media
// A basic calculator program
function calculate(operation, num1, num2) {
switch (operation) {
case "add":
return num1 + num2;
case "subtract":
return num1 - num2;
case "multiply":
return num1 * num2;
case "divide":
return num1 / num2;
default:
return "Invalid operation!";
}
}
console.log(calculate("add", 5, 3)); // Output: 8