This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
Autor: Joe Wayne
-
Why Teamwork is the Only Skill You Need
Written by
on
Most of your programming career will be spent working in teams with other people. Embrace teamwork as early as possible. One of the most common questions developers are asked during…
-
What is Agile Methodology and how does it work?
Written by
on
Agile methodology is not defined by a set of specific development techniques. On the contrary, Agile is a group of methodologies that demonstrate a commitment to feedback loops and continuous improvement.…
-
What is the Scrum methodology?
Written by
on
Where and when to use the Scrum methodology Scrum is widely used by software development teams. In fact, it is the most popular agile methodology. According to this report on agile development…
-
Filtering arrays with arrow functions in JavaScript
Written by
on
JavaScript is a popular and versatile programming language, and one of its most powerful features is its ability to work with arrays. One of the most useful functions for working…
-
5 Ways to Access Properties in JavaScript Objects
Written by
on
In JavaScript, an object is an unordered collection of key-value pairs. Properties are the values associated with a specific key in an object. In this article, we will explore 5…
-
5 Ways to Remove Elements from an Array in JavaScript
Written by
on
JavaScript is a programming language widely used in web development. One of the common tasks in programming is removing elements from an array. Fortunately, the language offers several ways to…
-
How to iterate through the properties of an object in JavaScript and print “key: value” to the console.
Written by
on
Here we will write a piece of javascript code that iterates through the properties of an object, printing in the browser console, and for each of them, the set “key:…
-
3 methods to remove duplicate items javascript array
Written by
on
There are several ways to remove duplicate items from an array in JavaScript. Below, I will describe three common methods: 1. Using the method filter() and indexOf() One way to…
-
Learn how to use React Hooks with these 3 tips
Written by
on
Introduction React Hooks are a great tool for all React developers, but especially for beginners and intermediate developers. They are one of the main tools for improving the readability, reusability…
-
Simplifying Rest API
Written by
on
What is REST? REST is a way of making the internet work. It is based on a set of rules that define how websites should communicate. REST, which stands for…