TYTeddy Yongointeyddie.hashnode.dev·Jan 3, 2022 · 1 min readAvoiding tutorial hellFollowing tutorials is helpful and one gains the knowledge of how products are created but Tutorial hell is a depressing place for any developer to be in. The only shortcut to beating this is through building, building and building many projects. Dev...00
TYTeddy Yongointeyddie.hashnode.dev·Dec 21, 2020 · 1 min readvalidating ParenthesisThe complexity of JS can only be managed. there are so many ways to tackle the situation but one has to find the easiest route to use. THIS IS HOW I DID IT 1: initiate a constant : const num = 0 ; 2: use a for loop to iterate over an argument present...00
TYTeddy Yongointeyddie.hashnode.dev·Dec 20, 2020 · 1 min readMy first JS codeconst greetPeople=()=>{ console.log('Hello People'); }; greetPeople();00