• Churro Delights: A Sweet Journey in Web Development

    One of my recent and most exciting projects is Churro Delights—a churro catering business that needed a vibrant online presence as delicious as its offerings. As a web developer, my challenge was to create a site that not only showcased the gourmet churros but also captured the fun, creative spirit of the brand. For Churro…

  • Map Object in Javascript

    The JavaScript Map object is a standard built-in object that holds key-value pairs and remembers the original insertion order of the keys. It offers constant insertion and lookup time (O(1)), meaning the time it takes to get a value is the same regardless of the number of items in the map. Features of the Map…

  • 1. Two Sum

    Difficult: Easy Approach: Simply using a brute force technique create two loops , loop over each element i for each element i iterate through the rest of the array with index j, starting from i+1. Check if the sum of nums[i] + nums[j] === target If it does then return the indices [i,j] Javascript Solution…

  • 242. Valid Anagram

    Difficulty: Easy Question: Given two strings s and t, return true if t is an anagram of s, and false otherwise. An Anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once. Example 1. Input: s = “anagram”, t =…

  • A Brief History of ReactJS 2023 version

    Hello welcome to my first ever blog post. My name is Chris I’m passionate web developer and wanted to create a blog to have a place to take notes, document my studies, learn, and help others that can relate to the topics. Anyways, Lets get started brief review of ReactJS as it’s my favorite library…