Akosua's Tech Blog
  • All Posts
  • Akosua's Website

Welcome to Akosua's Tech Blog

Latest blog posts

  • node express img

    Node and Express

    What is Nodejs?

    Nodejs is a platform that is used to build scalable server-side applications in JavaScript.

    What is Express?

    Express is a micro-framework used ontop of Nodejs. Express does the following for Node:

    • processing middleware
    • handle HTTP verbs (GET,PUT,POST,DELETE) at different paths
    • setting up the port used for connection
    June 17th, 2020
  • arrow function image

    Arrow Functions

    An arrow function is the updated syntax to the regular function syntax. The update was made when ES6 was released. The syntax is supposed to save time and simplify function scope.

    May 29th, 2020
  • javascript logo

    Object Oriented JavaScript - Classes

    Unlike PHP, Java, and C#, javascript did not have true class-based functionality. Before javascript classes were introduced in ES6 we had to use a constructor function and prototype syntax to mimic class behavior.

    May 27th, 2020
  • javascript logo

    This, Bind, Apply, Call

    The best way to approach how these functions work is by starting with the this keyword.

    May 25th, 2020
  • javascript logo

    JavaScript Basics - Control Flow

    Control flow is the order in which code is executed. Without intervention code runs from the first line to the last line.

    May 22nd, 2020
  • Data Structures and Algorithms

    Data Structures and Algorithms - Binary Search

    The Binary Search algorithm is a search algorithm to find a specific element in an array. Binary search only works on sorted arrays.

    May 20th, 2020
Browse more
© 2026, Built with Sanity & Gatsby