Categories
JavaScript

JavaScript Arrays filter method

After map method we are continuing our series on JavaScript Arrays methods. Today we are going to take a look at filter method. According to MDN: The filter() method creates a new array with all elements that pass the test implemented by the provided function. What does this mean? It means that you pass criteria […]

Categories
Other

What is snappify.io and why should you use it

I started my journey on Twitter last year. Reason for that is that I wanted to connect little more with community world-wide. Also I wanted to see if I could help at least one person to get involved with coding or to contribute to the community with my knowledge. Apart from that I love code […]

Categories
JavaScript Tips&Tricks

console.log in JavaScript – Tips & Tricks

One of the most used feature in JavaScript is console.log(), especially for debugging. Even though it is widely used most of the time we do not utilize all the power and possiblities of console.log(). console.log This is the most famous and most popular way of logging, even though we have some more ways, but let’ […]