Week 1 of WID intro to DeFi done and I’m honestly blown away. From Web1, 2, Web3 basics to blockchain fundamentals, blockchain trilemma to smart contracts and DeFi basics.
Mentor Sarah made every concept feel so easy to understand
Can’t wait for week 2! #WID #@thesarahidahosa
Day 30 of #30daysofLearningChallenge
Learning WeakMap in Js… WeakMap is a collection of key/value pairs whose keys must be objects or non-registered symbols with values of any arbitrary JavaScript type
#mytechjourneywithM4ACE
Day 28 of #30daysofLearningChallenge
Learning Set data structure set in Js.. A set is a built in data structure in JavaScript that allows you to store unique values of any type (primitive or object).
#mytechjourneywithM4ACE
Day 24 of #30daysofLearningChallenge
Learning Array in Js… Array object enables storing a collection of multiple items under a single variable name and has members for performing common array operations.
#mytechjourneywithM4ACE
Day 21 of #30daysofLearningChallenge
Static initiation block.. In static initiation block the class is performed first before its sub classes like instance init blocks and constructor.
#mytechjourneywithM4ACE
Day 19 of #30daysofLearningChallenge
Learning extends in ES6 Classes.. extends keyword is used in class declarations or class expressions to create a class that is a child of another class
#mytechjourneywithM4ACE
Day 18 of #30daysofLearningChallenge
There are two Class element syntaxes- Constructor and Static initialization blocks. The constructor method is a method for creating and initializing an object instance of that class.
#mytechjourneywithM4ACE
Day 15 of 30 days Challenge…
Creating a promise in Js… A promise is created using promise constructor, which takes a function with two parameters: resolve and reject.
#mytechjourneywithM4ACE
Day 14 of 30 days Challenge…
Learning Async Await in Js. Async and await are two different words that allows you to write asynchronous code in an asynchronous manner. Async makes a function return a promise, await makes an async wait for a promise. #myTechjourneywithM4ACE
Day 12 of 30days Challenge..
Learning Default parameters in Js, Default parameters are parameters with
preassigned values just in case to avoid undefined when there isn’t any argument passed to a function.
#myTechjourneywithM4ACE
Day 11 of 30days challenge…
Learning the difference between constant and variable in Js.. const by default should be use unless reassignment is needed, variable (let) should be use when reassignment is required
#myTechjourneywithM4ACE
Day 10 of 30days Challenge…
Learning Iterables and iterators… When an object is iterable, the full of loop can be used to display all of the values.
#myTechjourneywithM4ACE