BLOG

Latest Articles

How to use/avoid JavaScript infinite loop? [SOLVED]

In JavaScript, an infinite loop is a loop that continues to run indefinitely without ever terminating. This can happen when the condition that is being tested

By olorunfemiakinlua · 3 min read · JavaScript

JavaScript Math.toRadians | Convert Degrees to Radians

In JavaScript, we have a Math object that provides tons of methods to achieve certain mathematical operations. Unlike Java, there is no math.toradians method

By olorunfemiakinlua · 2 min read · JavaScript

How to Install Laravel on Ubuntu [100% Working]

This tutorial will guide you through complete steps to install Laravel on Ubuntu, covering web server setup with Apache, PHP and its extensions, database …

By stevealila · 7 min read · Laravel

How to use Python next() function? [SOLVED]

The next() function is a built-in function in Python that retrieves the next item from an iterator. It takes an iterator as an argument and returns the next

By admin · 2 min read · Python

Print a list in reverse order with range()? [SOLVED]

In this article we will learn how we can print a list in reverse order with range() in Python for which first we need to know what range() is and how it works.

By azkaiftikhar · 4 min read · Python