this is the beginners JavaScript course you are looking for my name is Bo Carnes and I'm with freak ok org in this full JavaScript course you will learn everything you need to know to get started with JavaScript this course is perfect for beginners or anyone that just wants a refresher on basic JavaScript syntax this course actually goes along with the free code kappa or javascript curriculum so if you want some live coding challenges to go along with every part of this course you can check the link in the description to that curriculum but this is a completely standalone video so you don't need to go through freako Kappa org but it could be helpful also after this course you're going to want to complete some or build some JavaScript projects so I have a link in the description to some project tutorials but then after event you're going to want to create some project on your own that's how you really learn JavaScript you have to create things without even going through the tutorial and just use a search engine to find the things that you don't know or need to learn to go along with the free code camp curriculum I have all the es6 stuff in the second part of this course and that's pretty much it let's learn some JavaScript so how exactly do you install JavaScript well for the most part you don't actually all web browsers can run JavaScript which is great cuz a lot of devices have web browsers on them so when you write something with JavaScript it will run on all sorts of devices and operating systems so you have a few options for writing JavaScript let me show you a few things you can do to follow along with this course you could download a code editor here I have sublime text you could also use Visual Studio code or atom or any code editor and I've created an HTML file because HTML files can be open in web browsers and I have these script tags these are HTML tags but within our script tags we have our JavaScript so if I open up this file in a web browser it looks like this well I can open up my JavaScript console and then in the console you can see it says hello world that's right from my JavaScript program so whenever you console that log is gonna show in the console here you could also just use the code editor that's included on free code camp org like I mentioned this course follows along with the JavaScript curriculum on free code camp org and there's a built in JavaScript editor right in here and then it shows you the console down here another option would be to use code pen if you go to code pinned IO I'm gonna go to create pin and then there's gonna be three windows HTML CSS and JavaScript well we just care about the JavaScript and in this course we're not gonna be doing anything with HTML and CSS we just need the JavaScript and the JavaScript console so if I do consult out log and then do hello world then we can see right in the console hello world the final thing you could do would be used scrim ba' most of the course I actually recorded using scrim be calm so if you want you can use grimbo calm to follow along once you log in just click the plus button I do a JavaScript playground and then confirm and it's gonna open up a new JavaScript window now I can increase the font size here and it already has console dot log hello from JavaScript you can see in the console right here hello from JavaScript also if you hit reload it reloads everything and you'll see this pop up hello from JavaScript so that's something interesting about scrim ba' is that it has two ways of logging in the console we have the pop-up and then we have the console here you'll see that in this course - the two different ways of logging to the console the first thing we'll talk about in javascript is comments comments are lines of code that JavaScript will intentionally ignore they don't do anything they're just used to create notes for yourself and others about what the code does so if you do slash slash you can make an inline comment an inline comment means it's at the end of a line of code for instance I can put var number equals 5 that's a way to declare a variable and we'll talk more about that later but right now we're just talking about comments you can see that this code is in color because the code editor knows that that's code that's going to run and the comment is automatically grayed out because it's not going to run we can also do an inline comment or I mean a multi-line comment if we do a slash star and I can put this is a and then I can put