Categories
JavaScript

JavaScript Arrays map method

Map method in JavaScript was introduced with ES-5. This is third article on JavaScript Arrays. If you haven’ t read first and second, please do. First two articles were little longer than we expected, so we will try to keep this one short. According to MDN: The map() method creates a new array populated with […]

Categories
JavaScript

Array loops in JavaScript

JavaScript Arrays is huge area, so we split this topic in multiple articles. If you haven’ t read part one you can read it: JavaScript Arrays – Manipulating data. This time we are covering array loops in Javascript and how to use loops to iterate over an arrays. Loop is a code/function that runs until […]

Categories
JavaScript

JavaScript Arrays – Manipulating data

JavaScript Arrays are list-like objects whose prototype has methods to perform traversal and mutation operations, according to MDN. Arrays are one of the basic Data storing/manipulating/handling things you will encounter when first starting with almost any programming language, if not all of them. Simply put: Arrays are simple way of storing data. In JavaScript, unlike […]

Categories
JavaScript

How to select element(s) using vanilla JavaScript?

You don’t need jQuery to perform simple element selection. I bet you wrote million times $(“#element”), or $(“.elements”) just to select something. Modern DOM API gives you everything you need to select elements, by ID, by Class, by Tag, by Attributes, by Pseudo-Class, yeah literally by anything that comes to your mind. Select element by […]

Categories
Other

5 things you should avoid as web developer

I have been web developer for year now (from 2010) and in my career I have seen a lot of beginners. Most of the beginner do the same mistakes, and trust they are mistakes, when it comes to learning web development. So, I decided to compile a list of the things you should avoid while […]

Categories
Other

Top 7 FREE resources for web design inspiration

Edit: this article has been updated on 8th of December 2022. I have found my favourite resource yet, Landingexam. As most of the developers I have problem with designing websites. Usually there is someone who designs a website or app and all I have to do is to code that design. But sometimes I find […]

Categories
Other

Top 5 FREE vector illustration resources for your website

I am working at small tech company in Bosnia and Herzegovina called Kingdom Alliance. We do pretty high volume of projects ranging from simple design, landing pages, corporate websites, ecommerce, softwares to online marketing. So we often have need for some vector illustration, especially when it comes to websites (of any sort). I will present […]

Categories
Other

5 FREE resources to learn Web Development

Nowadays learning new stuff is pretty easy, thanks to the internet. We are presenting you 5 free resources to learn web development. Hope you’ ll enjoy it. 1. FreeCodeCamp FreeCodeCamp is probably one of the best websites where you can learn web development. It has everything you need from simple HTML to Information Security and […]