Blog
Stay Up to Date With The Latest News & Updates
JavaScript Challenge Internship to CEO #14
Task of Challenge #14/54 Print the first 10 Fibonacci numbers without recursion. Fibonacci series: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, ... Solution...
JavaScript Challenge Internship to CEO #01
Solution to my Instagram
Template for The JavaScript Internship to CEO Challenge #00 – The Challenge Template
Introduction & Tutorial If you are new to the challenge or don't know how to start, this is the template you can download and take part in my...
My Top 5 Latest Medium Articles
German software engineer who helps aspiring coders to learn software development enjoyably where fun & emotions come first to learn on the fly 😉
JavaScript Internship to CEO Challenge #24/54
Task of Challenge #24 Create a function that will merge two arrays and return the result as a new array. The two arrays: [9, 8, 7, 6], [1, 2, 3,...
JavaScript Internship to CEO Challenge #23/54
Task of Challenge #23 Reverse a string. The string „JavaScript with ArnoldCode is the best!“ Solution Explanation The function reverseString creates...
JavaScript Internship to CEO Challenge #22/54
Task of Challenge #22 Rotate an array to the right 1 position. E.g. [1, 2, 3] -> [ 3, 1, 2 ] | [1, 2, 4, 6, 3] -> [ 3, 1, 2, 4, 6 ]. Solution...
JavaScript Internship to CEO Challenge – Challenge #21/54
Task of Challenge #21 Rotate an array to the right 1 position. E.g. [1, 2, 3] -> [ 3, 1, 2 ] | [1, 2, 4, 6, 3] -> [ 3, 1, 2, 4, 6 ]. Solution...
JavaScript Internship to CEO Challenge – Challenge #20/54
Task of Challenge #20 Rotate an array to the left 1 position. E.g. [1, 2, 3, 4, 5] -> [ 2, 3, 4, 5, 1 ] | [1, 2, 4, 5] -> [ 2, 4, 5, 1 ]. Solution...