Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
ISI Programming Course - 03 - Javascript
Search
Jungwon Seo
September 24, 2018
Technology
0
110
ISI Programming Course - 03 - Javascript
Github:
https://github.com/thejungwon/ISI-programming-class/tree/master/exercises/week-03
Jungwon Seo
September 24, 2018
Tweet
Share
More Decks by Jungwon Seo
See All by Jungwon Seo
MLOps Research
codethief
0
39
ISI Programming Course - 07 - Tensorflow
codethief
0
95
ISI Programming Course - 06 - Scikit Learn
codethief
0
33
ISI Programming Course - 05 - Python Data Science Libraries
codethief
0
66
ISI Programming Course - 04 - Python
codethief
0
140
ISI Programming Course - 02 - CSS
codethief
0
79
ISI Programming Course - 01 - HTML
codethief
0
140
Let's study web-development
codethief
0
73
Other Decks in Technology
See All in Technology
【5分でわかる】セーフィー エンジニア向け会社紹介
safie_recruit
0
26k
GitHub Copilot の概要
tomokusaba
1
140
Lambda Web Adapterについて自分なりに理解してみた
smt7174
5
130
ひとり情シスなCTOがLLMと始めるオペレーション最適化 / CTO's LLM-Powered Ops
yamitzky
0
440
“社内”だけで完結していた私が、AWS Community Builder になるまで
nagisa53
1
400
Delegating the chores of authenticating users to Keycloak
ahus1
0
130
Understanding_Thread_Tuning_for_Inference_Servers_of_Deep_Models.pdf
lycorptech_jp
PRO
0
140
Prox Industries株式会社 会社紹介資料
proxindustries
0
320
生成AI時代 文字コードを学ぶ意義を見出せるか?
hrsued
1
590
ドメイン特化なCLIPモデルとデータセットの紹介
tattaka
0
150
A2Aのクライアントを自作する
rynsuke
1
200
Observability в PHP без боли. Олег Мифле, тимлид Altenar
lamodatech
0
360
Featured
See All Featured
Raft: Consensus for Rubyists
vanstee
140
7k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
7
710
Product Roadmaps are Hard
iamctodd
PRO
54
11k
Writing Fast Ruby
sferik
628
62k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Reflections from 52 weeks, 52 projects
jeffersonlam
351
20k
Faster Mobile Websites
deanohume
307
31k
The Art of Programming - Codeland 2020
erikaheidi
54
13k
Designing for Performance
lara
609
69k
BBQ
matthewcrist
89
9.7k
Music & Morning Musume
bryan
46
6.6k
A Tale of Four Properties
chriscoyier
160
23k
Transcript
ISI Programming Class Javascript Jungwon Seo | University of Stavanger
It’s not Java.
You develop both web/ mobile application. web front-end back-end mobile
front-end(android/iOS)
Javascript
Javascript
• Let’s just narrow it down to the front-end part
of traditional web-programming. 90% of Javascript usage Javascript is huge and deep and broad. HTML CSS Javascript See you Later!
Javascript in web programming HTML with CSS and Javascript
The role of Javascript (in web-development) • Calculation • Event
/ Action • Manipulating the view • Network • Storage • Many other things
Don’t need to be good, but need to know how
to use.
Things to learn • How to include • Basic programming
• Event handling • Manipulating CSS • Timeout / Interval • How to use cookie • jQuery and AJAX
Exercise-01: Including • Inline • Internal • External Source code
Exercise-02: Basic Programming • Basic calculation : +, -, x,
/ • DataType : numeric, boolean, string • if-else and forloop • function Source code
Exercise-03: Event Handling • onclick • onload • onchange •
onsubmit Source code
Exercise-04: Changing CSS • selector • color • size •
content / element Source code
Exercise-05: Timeout/Interval • setTimeout • setInterval • Update the current
time Source code
Exercise-06: Cookie • How to check from the browser. •
https://www.w3schools.com/js/js_cookies.asp • setCookie • getCookie
Exercise-07: jQuery • Javascript : jQuery = Never mind :
nvm • Selector • Chaning CSS • Events Source code
Exercise-08: AJAX • Asynchronous JavaScript and XML • Easy in
jQuery • https://unsplash.com/developers Source code