Frontend Web Development Bootcamp Course (JavaScript, HTML, CSS) - Day 1
I saw this course on YouTube and became very interested because, unlike other courses on web development, this course starts with JavaScript (JS). I have tried to learn JS before but I went back to Python. Angela Yu's WDB teaches JS but she starts with HTML and CSS first which is unlike this course.
So what is so important about JavaScript (JS)? From content I found on the web, I noticed that it is more important and difficult to learn JS rather than HTML and CSS.
Also, I have decided that going forward I want to focus on Python and JavaScript.
JavaScript Variables
Note: console.log() and FireFox browser
Comments : // and /* */
- const TAX_RATE = 0.08; --- constant variable
- let hello_people = 'Hello World !";
- var time = 60; ... don't use "var" use "let"
- JS style guides: Naming conventions (example: camelCase)
Note: stopped the video at naming conventions -> 1:21:29
Comments
Post a Comment