JavaScript
Beginner’s Guide To Neural Networks In JavaScript With Brain.js
Part 1: Building Your First Neural Network Neural Networks are the essential building blocks for machine learning and artificial intelligence applications. By using Neural Networks we’re able to solve problems that can’t easily by solved by traditional algorithms, like face detection, voice recognition, or medical diagnosis. In this [...]
Building A Vanilla JavaScript Todo App From Start To Finish | EP5: Completing & Removing Todos
Episodes Episode 1: Introduction & Project Setup Episode 2: Adding UI Elements Episode 3: Styling The App Episode 4: Adding Todos Episode 5: Completing & Removing Todos In the last part of this series we’ll finalize our JavaScript Todo App by adding missing functionality like completing and removing todo items. Therefore we’re [...]
Building A Vanilla JavaScript Todo App From Start To Finish | EP4: Adding Todos
Episodes Episode 1: Introduction & Project Setup Episode 2: Adding UI Elements Episode 3: Styling The App Episode 4: Adding Todos Episode 5: Completing & Removing Todos In this episode of the Building A Vanilla JavaScript Todo App From Start To Finish we’re starting to add the necessary JavaScript code to our app. We’ll start [...]
Building A Vanilla JavaScript Todo App From Start To Finish | EP 3: Styling The App
Episodes Episode 1: Introduction & Project Setup Episode 2: Adding UI Elements Episode 3: Styling The App Episode 4: Adding Todos Episode 5: Completing & Removing Todos Part of building a Vanilla JavaScript Todo App is adding a modern and nice-looking user interface. In this episode we’re going to add the necessary CSS code [...]
Building A Vanilla JavaScript Todo App From Start To Finish | EP 2: Adding UI Elements
Episodes Episode 1: Introduction & Project Setup Episode 2: Adding UI Elements Episode 3: Styling The App Episode 4: Adding Todos Episode 5: Completing & Removing Todos In the first part of the Building A Vanilla JavaScript Todo App From Start To Finish series we started to setup the project and prepared the basic HTML page by [...]
Building A Vanilla JavaScript Todo App From Start To Finish | EP 1: Introduction & Project Setup
Episodes Episode 1: Introduction & Project Setup Episode 2: Adding UI Elements Episode 3: Styling The App Episode 4: Adding Todos Episode 5: Completing & Removing Todos Welcome to this first part of the Building A Vanilla JavaScript Todo App From Start To Finish. In this series we’ll be building a complete todo web application [...]
Getting Started With Strapi EP1: Introduction & Setup
Episodes Episode 1: Introduction & Setup Episode 2: Collection Types Episode 3: Authentication Welcome, this is the first episode of the Getting Started With Strapi tutorial series on CodingTheSmartWay.com. Without any prior knowledge you’ll learn everything which is needed to setup Strapi which can then be used as you headless CMS [...]
Async Programming With JavaScript – Callbacks, Promises and Async / Await
Introduction To Asynchronous Programming in JavaScript In general JavaScript is running code in a non-blocking way. This means that code which is is taking some time to finish (like accessing an API, reading content from the local file system etc.) is being executed in the background and in parallel the code execution is continued. This [...]
Top 3 JavaScript Online Courses
The JavaScript programming language is essential for nearly every web developer, regardless of whether you’re working on the front-end or you’re working on the back-end part of a web project. JavaScript is also the basis for most modern web development frameworks like Angular, React or Vue. Gaining a profound knowledge of [...]
Getting Started With Axios
Accessing REST Web Services / HTTP APIs in JavaScript Axios is a Promise-based HTTP client for JavaScript which can be used in your front-end application and in your Node.js backend. By using Axios it’s easy to send asynchronous HTTP request to REST endpoints and perform CRUD operations. The Axios library can be used in your plain [...]