#backatitwithjavascript 搜尋結果

未找到 "#backatitwithjavascript" 的結果

Day 29 — #BackAtItWithJavaScript I worked on displaying the budget in the UI. Ran into messy HTML structures and repetitive code, but I fixed it using template literals and using the DRY principle. Numbers still need proper dynamic updates, but the code feels much cleaner now.

Obianuju_sunday's tweet image. Day 29 — #BackAtItWithJavaScript

I worked on displaying the budget in the UI. Ran into messy HTML structures and repetitive code, but I fixed it using template literals and using the DRY principle. 

Numbers still need proper dynamic updates, but the code feels much cleaner now.
Obianuju_sunday's tweet image. Day 29 — #BackAtItWithJavaScript

I worked on displaying the budget in the UI. Ran into messy HTML structures and repetitive code, but I fixed it using template literals and using the DRY principle. 

Numbers still need proper dynamic updates, but the code feels much cleaner now.

Day 28 — #BackAtItWithJavaScript Another day, another step closer to putting it all together. Input fields? Checked.


Day 27 — #BackAtItWithJavaScript Starting a new mini-series: Putting It All Together. Everything I’ve learned so far, DOM, events, functions, first-class functions, clean structure(MVC) , etc now goes into one project. It's build time now, let's make something real. 🚀🖤

Obianuju_sunday's tweet image. Day 27 — #BackAtItWithJavaScript

Starting a new mini-series: Putting It All Together.

Everything I’ve learned so far, DOM, events, functions, first-class functions, clean structure(MVC) , etc now goes into one project.
It's build time now, let's make something real.

🚀🖤
Obianuju_sunday's tweet image. Day 27 — #BackAtItWithJavaScript

Starting a new mini-series: Putting It All Together.

Everything I’ve learned so far, DOM, events, functions, first-class functions, clean structure(MVC) , etc now goes into one project.
It's build time now, let's make something real.

🚀🖤

Day 26 — #BackAtItWithJavaScript Solved the next two challenges from the book where I left off. I also watched my tutor’s code too, compared how they handled things and how I did, looking at functionality and modularity. Exhausted but I feel very good about today’s wins.✨

Obianuju_sunday's tweet image. Day 26 — #BackAtItWithJavaScript

Solved the next two challenges from the book where I left off. 
I also watched my tutor’s code too, compared how they handled things and how I did, looking at functionality and modularity. 

Exhausted but I feel very good about today’s wins.✨
Obianuju_sunday's tweet image. Day 26 — #BackAtItWithJavaScript

Solved the next two challenges from the book where I left off. 
I also watched my tutor’s code too, compared how they handled things and how I did, looking at functionality and modularity. 

Exhausted but I feel very good about today’s wins.✨

Day 24 — #BackAtItWithJavaScript Today I finally got my quiz game to remember the score using closures. On to the next feature. We outside🖤😌

Obianuju_sunday's tweet image. Day 24 — #BackAtItWithJavaScript

Today I finally got my quiz game to remember the score using closures.

On to the next feature. We outside🖤😌
Obianuju_sunday's tweet image. Day 24 — #BackAtItWithJavaScript

Today I finally got my quiz game to remember the score using closures.

On to the next feature. We outside🖤😌

Day 24 — #BackAtItWithJavaScript I was supposed to continue my quiz game today, but I cracked open Exercises for Programmers and solved the first five challenges instead. A win is a win. 😌

Obianuju_sunday's tweet image. Day 24 — #BackAtItWithJavaScript

I was supposed to continue my quiz game today, but I cracked open Exercises for Programmers and solved the first five challenges instead.

A win is a win. 😌

Day 23 — #BackAtItWithJavaScript Trying to keep score with closures… and my brain is screaming lol.

Day 22 — #BackAtItWithJavaScript I'm combining everything I’ve learnt this past week into a simple quiz app. For today, I picked random questions, displayed them, and checked answers. Constructors and OOP made it way easier to organize the questions. We go again tomorrow.🚀

Obianuju_sunday's tweet image. Day 22 — #BackAtItWithJavaScript

I'm combining everything I’ve learnt this past week into a simple quiz app.

For today, I picked random questions, displayed them, and checked answers. Constructors and OOP made it way easier to organize the questions.

We go again tomorrow.🚀


Day 22 — #BackAtItWithJavaScript I'm combining everything I’ve learnt this past week into a simple quiz app. For today, I picked random questions, displayed them, and checked answers. Constructors and OOP made it way easier to organize the questions. We go again tomorrow.🚀

Obianuju_sunday's tweet image. Day 22 — #BackAtItWithJavaScript

I'm combining everything I’ve learnt this past week into a simple quiz app.

For today, I picked random questions, displayed them, and checked answers. Constructors and OOP made it way easier to organize the questions.

We go again tomorrow.🚀

Day 21 - #BackAtItWithJavaScript call() and apply(), function methods.

Obianuju_sunday's tweet image. Day 21 - #BackAtItWithJavaScript 

call() and apply(), function methods.

Closures and IIFEs? Reallyyyyyyy nice stuff. #BackAtItWithJavaScript

Obianuju_sunday's tweet image. Closures and IIFEs? 

Reallyyyyyyy nice stuff.
#BackAtItWithJavaScript

Finally got the return statement… it just gives the value and exits the function. Learned it the hard way. #BackAtItWithJavaScript


Day 20 — #BackAtItWithJavaScript Closures had me confused at first… Calling the parent function, hands you the entire child/inner function as a value and not the final result. You only get the result when you call that returned function again.

Obianuju_sunday's tweet image. Day 20 — #BackAtItWithJavaScript

Closures had me confused at first…

Calling the parent function, hands you the entire child/inner function as a value and not the final result.
You only get the result when you call that returned function again.
Obianuju_sunday's tweet image. Day 20 — #BackAtItWithJavaScript

Closures had me confused at first…

Calling the parent function, hands you the entire child/inner function as a value and not the final result.
You only get the result when you call that returned function again.

Day 19 — #BackAtItWithJavaScript I learned about IIFEs today. They are anonymous functions wrapped in parentheses and immediately called. Amongst other uses, they are perfect for data privacy and for codes that should run ONCE like initializing settings and configurations.

Obianuju_sunday's tweet image. Day 19 — #BackAtItWithJavaScript

I learned about IIFEs today. 

They are anonymous functions wrapped in parentheses and immediately called. 

Amongst other uses, they are perfect for data privacy and for codes that should run ONCE like initializing settings and configurations.
Obianuju_sunday's tweet image. Day 19 — #BackAtItWithJavaScript

I learned about IIFEs today. 

They are anonymous functions wrapped in parentheses and immediately called. 

Amongst other uses, they are perfect for data privacy and for codes that should run ONCE like initializing settings and configurations.

Day 18 — #BackAtItWithJavaScript Passing functions as arguments? Check. Functions returning functions? Double check. A good day it was.

Obianuju_sunday's tweet image. Day 18 — #BackAtItWithJavaScript

Passing functions as arguments? Check.
Functions returning functions? Double check.

A good day it was.

Day 17 — #BackAtItWithJavaScript Today was all about First class functions. I learned and understood that functions are values that can be stored in variables, passed around to other functions as argument and make my code more flexible.


Day 16 — #BackAtItWithJavaScript The partial checkout finally clicked I had to rewrite the whole logic so only the in-stock items get charged… and now my code is behaving like a real online store If your wallet can’t afford the drip? My function will humble you respectfully😂😂

Obianuju_sunday's tweet image. Day 16 — #BackAtItWithJavaScript

The partial checkout finally clicked
I had to rewrite the whole logic so only the in-stock items get charged… and now my code is behaving like a real online store
If your wallet can’t afford the drip? My function will humble you respectfully😂😂
Obianuju_sunday's tweet image. Day 16 — #BackAtItWithJavaScript

The partial checkout finally clicked
I had to rewrite the whole logic so only the in-stock items get charged… and now my code is behaving like a real online store
If your wallet can’t afford the drip? My function will humble you respectfully😂😂
Obianuju_sunday's tweet image. Day 16 — #BackAtItWithJavaScript

The partial checkout finally clicked
I had to rewrite the whole logic so only the in-stock items get charged… and now my code is behaving like a real online store
If your wallet can’t afford the drip? My function will humble you respectfully😂😂

Day 15 — #BackAtItWithJavaScript Testing and refactoring my checkout system today and omo the inconsistencies were so much I’ve been console.logging like my life depends on it, so if your own console.log suddenly stops working, just know I’ve used up the limit for the day 😌😂

Obianuju_sunday's tweet image. Day 15 — #BackAtItWithJavaScript

Testing and refactoring my checkout system today and omo the inconsistencies were so much

I’ve been console.logging like my life depends on it, so if your own console.log suddenly stops working, just know I’ve used up the limit for the day 😌😂
Obianuju_sunday's tweet image. Day 15 — #BackAtItWithJavaScript

Testing and refactoring my checkout system today and omo the inconsistencies were so much

I’ve been console.logging like my life depends on it, so if your own console.log suddenly stops working, just know I’ve used up the limit for the day 😌😂

Day 14 – #BackAtItWithJavaScript I didn’t touch VS Code today as I’m under the weather, but I still showed up in my own way. Spent the day mapping out the structure of my little JS product system — Person → Designer → Product → Customer. It’s still progress. Onward we go.

Obianuju_sunday's tweet image. Day 14 – #BackAtItWithJavaScript

I didn’t touch VS Code today as I’m under the weather, but I still showed up in my own way.

Spent the day mapping out the structure of my little JS product system — Person → Designer → Product → Customer.

It’s still progress. Onward we go.

Day 13 — #BackAtItWithJavaScript Yesterday was all about adding, removing and listing products… all in my console 😂 Today I took it further and started shaping the full checkout system Not even tested yet but I love how much clearer constructors + subclasses are becoming.

Obianuju_sunday's tweet image. Day 13 — #BackAtItWithJavaScript

Yesterday was all about adding, removing and listing products… all in my console 😂
Today I took it further and started shaping the full checkout system 
 Not even tested yet but I love how much clearer constructors + subclasses are becoming.
Obianuju_sunday's tweet image. Day 13 — #BackAtItWithJavaScript

Yesterday was all about adding, removing and listing products… all in my console 😂
Today I took it further and started shaping the full checkout system 
 Not even tested yet but I love how much clearer constructors + subclasses are becoming.

Day 12 – #BackAtItWithJavaScript Still loving constructors and classes. Deepening my knowledge by building a Product + Designer system that works entirely in my console lol.💅 It adds, removes and list products.

Obianuju_sunday's tweet image. Day 12 – #BackAtItWithJavaScript

Still loving constructors and classes.

Deepening my knowledge by building a Product + Designer system that works entirely in my console lol.💅

It adds, removes and list products.
Obianuju_sunday's tweet image. Day 12 – #BackAtItWithJavaScript

Still loving constructors and classes.

Deepening my knowledge by building a Product + Designer system that works entirely in my console lol.💅

It adds, removes and list products.
Obianuju_sunday's tweet image. Day 12 – #BackAtItWithJavaScript

Still loving constructors and classes.

Deepening my knowledge by building a Product + Designer system that works entirely in my console lol.💅

It adds, removes and list products.
Obianuju_sunday's tweet image. Day 12 – #BackAtItWithJavaScript

Still loving constructors and classes.

Deepening my knowledge by building a Product + Designer system that works entirely in my console lol.💅

It adds, removes and list products.

未找到 "#backatitwithjavascript" 的結果
未找到 "#backatitwithjavascript" 的結果
Loading...

Something went wrong.


Something went wrong.


United States Trends