TOP 3 GAMES YOU COULD EASILY CREATE WITH JAVASCRIPT! 1. Maze Game One of the games that have the shortest amount of lines to develop in javascript is the Maze Game, it is a labyrinth where you have to go from point A to point B moving with the arrows of the keyword. 2. Three in a row Three in a row game is the most popular easy game for beginners, and you can create it easily with only HTML and javascript. I will give you a 20 minutes tutorial to help you create this enternaining game! 3. Ping Pong Ping Pong Game is aRead More →

What is a framework and why is usfeul A framework is a work scheme generally used by programmers to carry out software development. Using a framework allows you to smooth development processes as it avoids having to write code every time and ensures good practices and code consistency. A framework is a set of tools and modules that can be reused for various projects. One of the most well-known and used frameworks is Microsoft’s Framework for websites. There are a lot of advantages of using framework for software development: Programmer saves time since he already has the skeleton which to develop an application. It facilitatesRead More →

As the name implies, Chrome Developer Tools is a set of web developer tools built directly into the Google Chrome browser that allows web developers to interfere and manipulate applications via the browser. With this tool you can easily: View and change page’s styles Debug Javascript Code Analyze runtime performance, so you can optimize your code View messages and running JavaScript in the Console To open DevTools, you can right-click anywhere on the page and select inspect element or you can choose the “tools > developer tools” option from the top right menu.   Now I’m going to show you some really useful and simpleRead More →