#backatitwithjavascript 검색 결과

"#backatitwithjavascript"에 대한 결과가 없습니다
"#backatitwithjavascript"에 대한 결과가 없습니다
"#backatitwithjavascript"에 대한 결과가 없습니다

Closures and IIFEs? Reallyyyyyyy nice stuff. #BackAtItWithJavaScript

Obianuju_sunday's tweet image. Closures and IIFEs? 

Reallyyyyyyy nice stuff.
#BackAtItWithJavaScript

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 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 3 - #BackAtItWithJavaScript Today I realized how flexible JS objects are. Turns out you can add new properties on the fly just by assigning them. One line: "object.newProperty = value" and a whole new property appears in the object. Wild and dynamic.

Obianuju_sunday's tweet image. Day 3 - #BackAtItWithJavaScript

Today I realized how flexible JS objects are. Turns out you can add new properties on the fly just by assigning them. 
One line:
"object.newProperty = value"
and a whole new property appears in the object. Wild and dynamic.

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 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.✨

Honestly? I haven’t finished the whole feature yet… and I just got the two dice showing on screen AND their values adding togetherrrrrrrrrrrr! I'm so happy rn. Oh yeah Oh yeah Oh yeah💃🥳 #BackAtItWithJavaScript

Obianuju_sunday's tweet image. Honestly? I haven’t finished the whole feature yet… and I just got the two dice showing on screen AND their values adding togetherrrrrrrrrrrr! 

I'm so happy rn. Oh yeah Oh yeah Oh yeah💃🥳
#BackAtItWithJavaScript

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 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.

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

Obianuju_sunday's tweet image. Day 21 - #BackAtItWithJavaScript 

call() and apply(), function methods.

Day 8 — #BackAtItWithJavaScript Wrapped up the Pig game today and learned the difference between state and flag variables. State variables are used to keep track of the current condition of the app. Flag variables are often just true/false signals to trigger something once.

Obianuju_sunday's tweet image. Day 8 — #BackAtItWithJavaScript
Wrapped up the Pig game today and learned the difference between state and flag variables.
State variables are used to keep track of the current condition of the app.
Flag variables are often just true/false signals to trigger something once.

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 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 6 — #BackAtItWithJavaScript Still on the DOM. Learned how classList.toggle() switches things up.

Obianuju_sunday's tweet image. Day 6 — #BackAtItWithJavaScript
Still on the DOM.
Learned how classList.toggle() switches things up.

Day 7 — #BackAtItWithJavaScript Just me, the DOM, the UI, and the DRY principle today. That tiny red dot gave me a tough time but CSS pseudo-element humbled it. Feels good😌

Obianuju_sunday's tweet image. Day 7 — #BackAtItWithJavaScript
Just me, the DOM, the UI, and the DRY principle today.
That tiny red dot gave me a tough time but CSS pseudo-element humbled it. Feels good😌

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 10 - #BackAtItWithJavaScript Challenge Two: Done✅ A player loses his entire global when he rolls two 6s in a row. The tiniest line/code placement can make or break your application, I learnt that about JS while working on this feature. Also made good use of a state variable.

Obianuju_sunday's tweet image. Day 10 - #BackAtItWithJavaScript
Challenge Two: Done✅
A player loses his entire global when he rolls two 6s in a row.
The tiniest line/code placement can make or break your application, I learnt that about JS while working on this feature. Also made good use of a state variable.

#DayWhatever - #BackAtItWithJavaScript Set the winning score once and for all using a flag variable so the players can’t keep switching winning scores mid-game. Good night please.😌 Challenge One: DONE ✅

Obianuju_sunday's tweet image. #DayWhatever - #BackAtItWithJavaScript

Set the winning score once and for all using a flag variable so the players can’t keep switching winning scores mid-game.

Good night please.😌

Challenge One: DONE ✅

Loading...

Something went wrong.


Something went wrong.


United States Trends