by SENDIL J | Jan 26, 2021 | Web Development
In JavaScript, the array.sort() method sorts the array. Let’s use the method to sort an array of numbers: const numbers = [10, 5, 11]; numbers.sort(); Hm… numbers.sort() returns [10, 11, 5] — which doesn’t look like a sorted array in ascrending order. Why does...
by SENDIL J | Jan 14, 2021 | Web Development
When creating a website, it’s vital to remember that not only does it need to work and look great on the device you are creating it on, but on all the other devices, it might be used on too. Mobile and tablet optimization is important not only for the user journey but...
by SENDIL J | Jan 8, 2021 | Web Development
If you were paying close attention to your IT department around the 8th of December, you might have heard some quiet sobbing and the occasional wail of, “Why? Why?! WHY?!” Now, it was the year 2020, so this might have seemed normal to you, but it’s actually something...
Recent Comments