Articles

2 min read
🔎 Easy Autocomplete / Suggestions for Inputs with just HTML5 | datalist tag

Sometimes you would like to suggest some options to a user as they type something into an input. Maybe there are popular search categories or tags that people are looking for. You could, of course, implement an API driven feature, or if you want to get a quick way for it to be up and running why not just use the datalist tag?

Written by Niall Maher

Niall MaherNiall Maher's avatar
3 min read
5 npm Tips/Tricks You (Probably) Don't Know 🚀

A small showcase of some of the useful underused things you can do with npm to boost your productivity.

Written by Niall Maher

Niall MaherNiall Maher's avatar
2 min read
Ternary operator in Javascript

We all have that model in our mind that a variable is a box containing some value e.g. let a contains 10. Let me ask you a simple question. What is a variable? You might have answered that variable is a box in memory that holds some value and you have pictured something as below in your mind.

Written by Praveen Kumar

Praveen KumarPraveen Kumar's avatar