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
Classroom Observation Tools for Teachers
PDF
Computing-Curriculum for Schools in Ghana
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PPTX
History, Philosophy and sociology of education (1).pptx
PDF
A systematic review of self-coping strategies used by university students to ...
PDF
RMMM.pdf make it easy to upload and study
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
Practical Manual AGRO-233 Principles and Practices of Natural Farming
PPTX
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
PDF
Updated Idioms and Phrasal Verbs in English subject
PDF
Paper A Mock Exam 9_ Attempt review.pdf.
PPTX
Cell Types and Its function , kingdom of life
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PPTX
UNIT III MENTAL HEALTH NURSING ASSESSMENT
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PDF
Weekly quiz Compilation Jan -July 25.pdf
PPTX
master seminar digital applications in india
Classroom Observation Tools for Teachers
Computing-Curriculum for Schools in Ghana
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
History, Philosophy and sociology of education (1).pptx
A systematic review of self-coping strategies used by university students to ...
RMMM.pdf make it easy to upload and study
2.FourierTransform-ShortQuestionswithAnswers.pdf
Supply Chain Operations Speaking Notes -ICLT Program
Module 4: Burden of Disease Tutorial Slides S2 2025
Practical Manual AGRO-233 Principles and Practices of Natural Farming
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
Updated Idioms and Phrasal Verbs in English subject
Paper A Mock Exam 9_ Attempt review.pdf.
Cell Types and Its function , kingdom of life
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
UNIT III MENTAL HEALTH NURSING ASSESSMENT
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
Weekly quiz Compilation Jan -July 25.pdf
master seminar digital applications in india

LA 1/16/18 Intro to Javascript: Fundamentals