📰 Dev.to · Anees Abdul
Articles from Dev.to · Anees Abdul · 7 articles · Updated every 3 hours · View all reads
All
⚡ AI Lessons (9376)
ArXiv cs.AIDev.to · FORUM WEBForbes InnovationDev.to AIOpenAI NewsHugging Face Blog

Dev.to · Anees Abdul
3d ago
Functions in JavaScript
What is a Function? -A function is a block of code designed to perform a specific task. Instead of...

Dev.to · Anees Abdul
5d ago
Looping Statements in JavaScript!
What is a Loop? A loop repeats a set of instructions until a condition is met. Example: Instead of...

Dev.to · Anees Abdul
5d ago
JavaScript program task-1
1) 1 1 1 1 1 let output = " "; for(let i=1;i<=5;i++){ output +=" 1"; ...

Dev.to · Anees Abdul
1w ago
Task on Looping Statement
1) Print numbers from 1 to 5: FlowChart: let i=1; for(i=1;i<=5;i++){ console.log(i); ...

Dev.to · Anees Abdul
1w ago
Conditional Statements in JavaScript:
What are Conditional Statements in JavaScript? Conditional statements are used to make decisions in...

Dev.to · Anees Abdul
1w ago
JavaScript Scenario Task:
1)Shopping Discount System: In online shopping websites, discounts are applied based on the purchase...

Dev.to · Anees Abdul
2mo ago
Variables and Types:
What is a variable It is a container to store data values. Each Variable has: Datatype Variable...
DeepCamp AI