Project: Personal Budget “2”

A project based on Codecademy’s Back End Engineer Career Path Vision Keeping track of my personal finance dispositions is central to reach long standing financial goals. Wether it is for investing in stocks and other assets, or saving up for something bigger – like a car, kitchen or maybe even a new home. The applicationContinue reading “Project: Personal Budget “2””

A promise to resolve or reject a pending Promise

Todays topic is Promises. I’ve been working with python as my first programming language and only the synchronous part. Thus, promises and asynchronous programming takes some effort to get my head around. Basically, a Promise object is used to request some resource and continue running lines of code, while the request is returning a response.Continue reading “A promise to resolve or reject a pending Promise”

Accessing arrays and if statements in JavaScript – And solving the wrong problem

While trying to solve one of Codecademys challenge projects, I’ve run into a challenge with if statements and checking whether a value is true or false in an array. What I expected to be a pretty simple line of code, seems to break the way JavaScript works. The problem is was as follows: if (someArray[x][y]Continue reading “Accessing arrays and if statements in JavaScript – And solving the wrong problem”