JavaScript Function CheatsheetIn JavaScript, functions are one of the fundamental building blocks. A function is a block of organised, reusable code to perform a single…Nov 8, 2020Nov 8, 2020
JavaScript Conditional StatementsIn everyday life, we make our decisions based on circumstances. For example, if we are tired, we go to bed, otherwise, we stay awake…Nov 1, 2020Nov 1, 2020
A Quick Introduction To JavaScript Array Iteration MethodsIterators are methods called on arrays to operate on every array element and return values. In this blog post, I will focus on explaining…Oct 25, 2020Oct 25, 2020
Basic CSS SelectorsIn CSS, selectors are used to select or find the HTML elements of a web page that we wish to style. There are 5 different types of CSS…Oct 18, 2020Oct 18, 2020
RESTful Conventions in RailsREST stands for REpresentational State Transfer, and it is an architectural style that defines how Web standards, such as HTTP and URIs…Oct 4, 2020Oct 4, 2020
The React Component Lifecycle OverviewReact was designed to allow developers to create complex and highly interactive UIs. React components can quickly adapt to changes from…Sep 27, 2020Sep 27, 2020
Published inThe StartupA Quick Introduction to JSXJSX allows us to add HTML elements in React, thus making it easier to write React components in an efficient and expressive manner. In…Sep 17, 2020Sep 17, 2020
Published incodeburstJavaScript: Var, Let, or Const? Which One Should you Use?ES6 came with a lot of shiny new features including two new ways to define variables in JavaScript. There are now three different keywords…Sep 10, 20201Sep 10, 20201
JavaScript: Arrow Functions vs Regular FunctionsArrow functions were introduced in ES6 and they allow us to write a more concise code. While both regular and arrow functions work in a…Sep 6, 2020Sep 6, 2020