Basic JavaScript Course Free Code Camp




Support our Community: https://www.patreon.com/CodingTutorials360
Basic JavaScript course completed from FreeCodeCamp.com
#JS #JavaScript #FCC #FreeCodeCamp
Thank you to our sponsor:
http://www.speakwithageek.com
http://www.facebook.com/dylan.c.israel

http://www.codingtutorials360.com
https://www.instagram.com/dylansphotos87

Support me and visit my store at:
http://www.codingtutorials360.com/store.html

Internship, Part-Time, & Full time work for college students and recent grads:
http://www.codingtutorials360.com/WayUp.html

Fan funding goes towards buying the equipment necessary to deliver 4k videos, 4k webcam, and a high quality microphone better audio. Any support is very appreciated!

My channel is here for aspiring programmers to learn easier and help debug any issues from the many great free resources available on the web.

Check out my other videos going over HTML, CSS, Ruby, Ruby on Rails, Java, JavaScript, Python, PHP, SQL, Command Line, BootStrap, jQuery, and WordPress from CodeCademy, CodeCombat, FreeCodecamp and more!

-~-~~-~~~-~~-~-
Please watch: “Codecoure Interview: Behind the Code Episode 16”

-~-~~-~~~-~~-~-

Original source


34 responses to “Basic JavaScript Course Free Code Camp”

  1. Really got stuck at the beginning, tried some examples to do myself some i managed and some i didnt, i found your Video and it was a boost to me and am learning more every day and some things are more clear to me now :), thanks and keep up the good work.

  2. This was extremely helpful. I followed this tutorial and re-did what I had already done and continued forward where I had left off. I had a much better understanding of the concepts and was able to finish in a fraction of the time as the first! Thank you!

  3. Dude, have you ever tried, errr, I dunno, like… Reading the assignment?? I've been watching for half an hour and you make a million mistakes simply due to the fact that you have not once read the instructions for the task. That's pretty retarded, making an instructional video and all…

  4. You cheated on the converting F ot C one!! That's the exact module I came to this video to see cuz I was stuck on it. Your solution was to write code specifically where it told you not to haha.

  5. I have no idea whats going on in this problem. I watched you complete it, but i really dont know what is going on in here..

    function multiplyAll(arr) {
    var product = 1;
    // Only change code below this line
    for (var i = 0; i < arr.length; i++) {
    for (var j = 0; j < arr[i].length; j++) {

    product = product * arr[i][j];
    }
    }

    // Only change code above this line
    return product;
    }

    // Modify values below to test your code
    multiplyAll([[1,2],[3,4],[5,6,7]]);

Leave a Reply