SlideShare a Scribd company logo
Intro to JavaScript: Fundamentals
January 2018
http://bit.ly/intro-js-la
1
About you
What's your name?
What brought you here today?
What is your programming experience?
2
About Thinkful
We train developers and data scientists through
1x1 mentorship and project-based learning.
Guaranteed.
3
Agenda
Learn key Javascript concepts
Go over assignments
Complete assignments with our support!
Go over answer key
4
How the web works
Type a URL from a client (e.g. google.com)​
Browser sends an HTTP request asking for specific files
Browser receives those files and renders them as a website
5
Client/Servers
Client (sends requests)
Frontend Developer
Manages what user sees
Server (sends response)
Backend Developer
Manages what app does
6
Example: facebook.com
Client Server
Open browser
and navigate to
facebook.com
HTML, CSS, &
JavaScript render
newsfeed
Request
Response
Algorithm
determines
content of feed.
Sends back
HTML, CSS,
JavaScript files
Application Logic
Initial request
Following response
7
Example: facebook.com
Client Server
Open browser
and navigate to
facebook.com
HTML, CSS, &
JavaScript render
newsfeed
Request
Response
Algorithm
determines
content of feed.
Sends back
HTML, CSS,
JavaScript files
Application Logic
Initial request
Following response
We'll be writing JavaScript, the code
that the browser uses to run the app
8
Defining a variable with JavaScript
var numberOfSheep = 20
Initialize variable
Name of variable
Value of variable
9
Variable examples
JSBin.com
10
Declaring a function with JavaScript
function greet() {
return "Hello world!";
}
Initialize function Name of function
What the function does
11
Function examples
JSBin.com
12
If/Else Statements
go to gas stationkeep driving
if false if true
need gas?
family roadtrip
13
If/Else Statements
function familyRoadtrip() {
if (needGas == true) {
getGas();
}
else {
keepDriving();
}
}
14
Comparing Values
== (equal to)
5 == 5 --> true
5 == 6 --> false
!= (not equal to)
5 != 5 --> false
5 != 6 --> true
15
If/Else Statements and Comparing Values
JSBin.com
16
Parameters within functions
function adder(a, b) {
return a + b;
}
adder(1,2);
Parameters in declaration
Parameters used
within the function
17
Examples of parameters within functions
JSBin.com
18
Repl.it setup & first steps!
bit.ly/tf-intro-js-challenges
19
Real developers use Google... a lot
bit.ly/intro-js-la
20
Ways to keep learning
21
Thinkful's free course
Web Development Fundamentals
HTML, CSS and JavaScript
Unlimited group mentor sessions
Personal Program Manager
Slack Channel
bit.ly/web-dev-free
Thinkful Coding Prep Course
22

More Related Content

PDF
LA 1/31/18 Intro to JavaScript: Fundamentals
PDF
LA 1/31/18 Intro to JavaScript: Fundamentals
PPTX
Meta tags
PDF
A Deep Dive Into SEO Tactics For Modern Javascript Frameworks
PPTX
News Specific Crawl Errors
PPTX
Meta tags
PDF
Chapter 5: Content Optimization Strategy
LA 1/31/18 Intro to JavaScript: Fundamentals
LA 1/31/18 Intro to JavaScript: Fundamentals
Meta tags
A Deep Dive Into SEO Tactics For Modern Javascript Frameworks
News Specific Crawl Errors
Meta tags
Chapter 5: Content Optimization Strategy

What's hot (18)

PDF
Checklist seo
PDF
SEO Meets Automation
PDF
Quality Content at Scale Through Automated Text Summarization of UGC
PPT
Introduction to Joomla SEO
DOC
Analysis report didm
PPTX
Site Indexing - The Most Effective SEO Technique
PPT
RSS feeds
PPTX
What to do Before You Replace Your Search Engine
PPTX
On site audit with screaming frog gdi
PPTX
ClearedJobs.Net Job Search
PDF
Wordpress seo themes
DOCX
How the search engine works?
PDF
SEO & WordPress for beginners
PPT
SEO Temelleri
PDF
SEO: Core Understanding, Solid Strategy & Advanced Tactics
PPT
Design Guidelines For Web Sites
DOCX
Boost your traffic
PDF
Google Webmaster Tools for WordPress
Checklist seo
SEO Meets Automation
Quality Content at Scale Through Automated Text Summarization of UGC
Introduction to Joomla SEO
Analysis report didm
Site Indexing - The Most Effective SEO Technique
RSS feeds
What to do Before You Replace Your Search Engine
On site audit with screaming frog gdi
ClearedJobs.Net Job Search
Wordpress seo themes
How the search engine works?
SEO & WordPress for beginners
SEO Temelleri
SEO: Core Understanding, Solid Strategy & Advanced Tactics
Design Guidelines For Web Sites
Boost your traffic
Google Webmaster Tools for WordPress
Ad

Similar to LA 1/16/18 Intro to Javascript: Fundamentals (20)

PDF
(LA 1/16/18) Intro to JavaScript: Fundamentals
PDF
PDF
Itjsf13
PDF
Itjsf13
PDF
Itjsf49
PDF
Itjsf129
PDF
Intro to JavaScript: FUNdamentals (3/7/18)
PDF
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-55-78-171-219-304-310-388 (1)
PDF
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-55-78 (12)
PDF
Intro js3.22.18
PDF
Introjs1.9.18tf
PDF
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74-451
PDF
Ijsphx927
PDF
Introjs2.13.18sd
PDF
Itjs124
PDF
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-55
PDF
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14
PDF
Introjssd 11.8.17
PDF
Introjscb112817
PDF
tfIjspdx080717
(LA 1/16/18) Intro to JavaScript: Fundamentals
Itjsf13
Itjsf13
Itjsf49
Itjsf129
Intro to JavaScript: FUNdamentals (3/7/18)
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-55-78-171-219-304-310-388 (1)
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-55-78 (12)
Intro js3.22.18
Introjs1.9.18tf
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74-451
Ijsphx927
Introjs2.13.18sd
Itjs124
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-55
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14
Introjssd 11.8.17
Introjscb112817
tfIjspdx080717
Ad

More from Thinkful (20)

PDF
893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-46-115-141-308-324-370
PDF
Twit botsd1.30.18
PDF
Build your-own-instagram-filters-with-javascript-202-335 (1)
PDF
Baggwjs124
PDF
Become a Data Scientist: A Thinkful Info Session
PDF
Vpet sd-1.25.18
PDF
LA 1/18/18 Become A Web Developer: A Thinkful Info Session
PDF
How to Choose a Programming Language
PDF
Batbwjs117
PDF
1/16/18 Intro to JS Workshop
PDF
Websitesd1.15.17.
PDF
Bavpwjs110
PDF
Byowwhc110
PDF
Getting started-jan-9-2018
PDF
Proglangauage1.10.18
PDF
Batbwjs14
PDF
Jsgame1418sd
PDF
Web app-la-jan-2
PDF
Intro js-la-jan-4
PDF
Deck 92-146 (3)
893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-46-115-141-308-324-370
Twit botsd1.30.18
Build your-own-instagram-filters-with-javascript-202-335 (1)
Baggwjs124
Become a Data Scientist: A Thinkful Info Session
Vpet sd-1.25.18
LA 1/18/18 Become A Web Developer: A Thinkful Info Session
How to Choose a Programming Language
Batbwjs117
1/16/18 Intro to JS Workshop
Websitesd1.15.17.
Bavpwjs110
Byowwhc110
Getting started-jan-9-2018
Proglangauage1.10.18
Batbwjs14
Jsgame1418sd
Web app-la-jan-2
Intro js-la-jan-4
Deck 92-146 (3)

Recently uploaded (20)

PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PPTX
Revamp in MTO Odoo 18 Inventory - Odoo Slides
PPTX
Week 4 Term 3 Study Techniques revisited.pptx
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
Business Ethics Teaching Materials for college
PDF
PSYCHOLOGY IN EDUCATION.pdf ( nice pdf ...)
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PPTX
UNDER FIVE CLINICS OR WELL BABY CLINICS.pptx
PPTX
Open Quiz Monsoon Mind Game Prelims.pptx
PDF
Pre independence Education in Inndia.pdf
PPTX
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
PPTX
How to Manage Starshipit in Odoo 18 - Odoo Slides
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PDF
Piense y hagase Rico - Napoleon Hill Ccesa007.pdf
PPTX
Nursing Management of Patients with Disorders of Ear, Nose, and Throat (ENT) ...
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PDF
O7-L3 Supply Chain Operations - ICLT Program
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
Revamp in MTO Odoo 18 Inventory - Odoo Slides
Week 4 Term 3 Study Techniques revisited.pptx
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
102 student loan defaulters named and shamed – Is someone you know on the list?
Business Ethics Teaching Materials for college
PSYCHOLOGY IN EDUCATION.pdf ( nice pdf ...)
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
human mycosis Human fungal infections are called human mycosis..pptx
UNDER FIVE CLINICS OR WELL BABY CLINICS.pptx
Open Quiz Monsoon Mind Game Prelims.pptx
Pre independence Education in Inndia.pdf
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
How to Manage Starshipit in Odoo 18 - Odoo Slides
Abdominal Access Techniques with Prof. Dr. R K Mishra
Piense y hagase Rico - Napoleon Hill Ccesa007.pdf
Nursing Management of Patients with Disorders of Ear, Nose, and Throat (ENT) ...
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
O7-L3 Supply Chain Operations - ICLT Program

LA 1/16/18 Intro to Javascript: Fundamentals