Frontend Javascript Programming How to Set Up React Router Version 6 Page navigation is very essential in React applications and the is a package that allows us to easily route or navigate to other pages in react applications is React Router . In this article, we will discuss how to set up React Router version 6 Prerequisites Basic understanding of what components are in React Visual […] Written by Matilda Kpolley April 4, 2022April 5, 2022
Javascript Programming Use Javascript – .map() .find() .reduce() and .filter() Javascript comes with a couple of functions that make things easy. You probably have heard of .map(), .find(), .reduce()and .filter(). But, how and when can we use these functions to simplify our code. I will try and explain with examples of how each of these functions works. .map() How does the .map() method work? Here […] Written by Clemence Ayekple November 28, 2020December 7, 2020
Javascript Programming Javascript Shorthand Coding Techniques In this blog post, I have compiled some helpful javascript shorthand coding techniques. Javascript shorthands are good coding techniques that can help programmers optimize and simplify their javascript codes. 1. If Presence At a point in our code, we need to check if a variable is present or not. The if present shorthand helps you […] Written by Clemence Ayekple January 26, 2020August 2, 2020
Frontend Javascript Javascript ES6 Array and Object Destructuring Array and Object Destructuring There are two most used data structures in javascript; array and object. Array and object destructuring is a significant feature in javascript ES6. ES6 Array Destructuring Usually, to access an item in an array, you would have to access the items via their indexes as shown below. However, you might want […] Written by Clemence Ayekple January 19, 2020August 3, 2020
Javascript Vue VS Code Extensions for Vue.js VS Code is a popular lightweight text editor in the development community. It has a lot of features that are similar to other text editors like Sublime Text and Atom.No doubt the power of the VS Code comes from the marketplace. One of the best features of Visual Studio Code is the tons of extensions […] Written by Clemence Ayekple January 13, 2020January 13, 2020
Javascript Colorize Terminal Output Nodejs Most developers today work with the terminal. It can be fun and extremely helpful to colorize the terminal output. I have seen a couple of articles using ANSI escape codes to colorize the console output. The module colors.js and chalk are available on npm. These packages provide extremely easy to use wrappers that make colorizing […] Written by Clemence Ayekple January 8, 2020January 8, 2020
Javascript How to add jQuery to Vue If you are from a jQuery background, the idea of not being able to use jQuery in your frontend application can be stressing. Fortunately, that is not the case with Vue. Integrating JQuery with Vue is incredibly easy and we can do it in a few simple steps. Apparently, jQuery has a lot of awesome […] Written by Clemence Ayekple December 27, 2019December 27, 2019
Javascript Programming Styling Console Messages As developers, we at a point log messages to the console for debugging purpose. Getting unexpected results can be stressful at times especially if you have multiple components in your application. In this case, console messages are extremely helpful. What if you can style your console messages? Probably not for only debugging purpose but to […] Written by Clemence Ayekple September 18, 2019October 9, 2019