SeeFun.Dev
743 subscribers
349 photos
24 videos
7 files
189 links
He/Him

Building, coding, and sharing

Github- https://github.com/sifenfisaha

Dm- @see_fun
Download Telegram
โœ”๏ธ ๐Ÿš€ Day 5: Looping into JavaScript! ๐Ÿš€

Todayโ€™s all about loops โ€“ the secret sauce for repeating tasks without writing the same code over and over. ๐Ÿ”„

What Iโ€™m covering:
- For and while loops ๐Ÿ’ซ
- Writing cleaner, smarter code ๐Ÿ’ก

JavaScriptโ€™s feeling more intuitive every day! Letโ€™s keep the momentum going! ๐Ÿ’ช

#Day5 #JavaScript #CodeLife #CodingJourney
Please open Telegram to view this post
VIEW IN TELEGRAM
โšก4
๐Ÿš€ Day 8: DOM Manipulation Magic! ๐Ÿš€

Today, Iโ€™m diving deep into DOM manipulation and bringing a cool game to life! ๐ŸŽฎ Working on making it interactive and responsive, and Iโ€™m aiming to have it finished and live by the end of the day. Stay tuned itโ€™s going to be fun! ๐Ÿ‘พ #WebDevJourney #JavaScript #ComingSoon
๐Ÿ‘2
โœ”๏ธDay 3 : Looping Through Arrays and Objects

Hey folks! ๐Ÿ‘‹ Today, I learned some cool ways to loop through arrays and objects in JavaScript. These tricks make it so much easier to handle data. Hereโ€™s a quick example I tried out:

// Looping through an array
const scores = [90, 85, 78, 92];
for (const score of scores) {
console.log(`Score: ${score}`);
}

// Looping through an object
const student = { name: 'Sifen', age: 20, grade: 'A' };
for (const [key, value] of Object.entries(student)) {
console.log(`${key}: ${value}`);
}


With for-of, looping through arrays feels effortless. And Object.entries makes working with objects a breezeโ€”you get both the key and value in one go!

These are game-changers for making code cleaner and more readable. ๐Ÿ’ป Feeling pumped about JavaScript! ๐Ÿš€ #JavaScript #CodingJourney #WebDevJourney
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘5๐Ÿ”ฅ1