Problem I’m trying to update my skillset by learning how to write isomorphic JavaScript applications. For my stack, I’ve chosen […]
Tag: javascript
Fetching user details, posts, and comments using promises in ExpressJS
Problem I’m creating an API service in NodeJS using Express (version 4) Framework. Created an MVC architecture for the same […]
JavaScript flood fill
Problem I tried to implement a very simple color flood fill to experiment a bit with Javascript. All comments about […]
Convert string to spinal case
Problem Due to an excercise, I’ve made a function that converts given string to spinal case just-like-this-one (all lower case). […]
Pattern usage for increment / decrement React (Hooks)
Problem When asked to increment / decrement a particular value I usually create specific functions to handle this functionality. Like […]
Get character occurence count along with character in a string
Problem I want to find character sequence count in a given string. Sample Input: aaaabbbbaaacccbbb Output: a4b4a3c3b3 My below function […]
Frogger HTML5 JavaScript Canvas Game using Object Oriented Design
Problem I created a Frogger game using JavaScript and HTML5. The game runs fine, but that might be because the […]
Array’s reverse vs simple arithmethic
Problem I was asked to print numbers from 100 to 1 in a for loop with the index starting from […]
Country Guessing Game
Problem I’m learning React and I made this country guessing game. What improvements/suggestions do you have for it? Preview it […]
Concurrent fire and forget async task queue
Problem I had to do a lot of IO stuff on my server running Node JS where I did not […]