I’m a Front End web developer. Everyone likes to write. I’m one of them. However, I’m not a professional writer. Sometimes I write and publish my experiences.
Nothing here yet.
function randomNumber(min, max) { return Math.floor(Math.random() * (max - min) + min); } /* var result = randomNumber(0, 50); console.log("A random integer number between two numbers is: " + result); Output : A random integer number between two n...

charAt() : charAt(int) method returns the character in the specified string for a given index number. The index of the string starts at zero (0). For Example: var stringOne = 'Hello JavaScript'; var output = stringOne.charAt(6); console.log("The char...

I will try to explain this to you very simply and briefly, I hope you will understand better. We know that double equal (==) and triple equal (===) both are called comparison operators. Double equal (==) is used for comparing two variables, but it ch...
