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
74
Other Decks in Technology
See All in Technology
BPaaSにおける人と協働する前提のAIエージェント-AWS登壇資料
kentarofujii
0
140
機械学習を扱うプラットフォーム開発と運用事例
lycorptech_jp
PRO
0
250
Generative AI Japan 第一回生成AI実践研究会「AI駆動開発の現在地──ブレイクスルーの鍵を握るのはデータ領域」
shisyu_gaku
0
270
テストを軸にした生き残り術
kworkdev
PRO
0
210
サラリーマンの小遣いで作るtoCサービス - Cloudflare Workersでスケールする開発戦略
shinaps
2
450
【実演版】カンファレンス登壇者・スタッフにこそ知ってほしいマイクの使い方 / 大吉祥寺.pm 2025
arthur1
1
870
5分でカオスエンジニアリングを分かった気になろう
pandayumi
0
250
Agile PBL at New Grads Trainings
kawaguti
PRO
1
430
DDD集約とサービスコンテキスト境界との関係性
pandayumi
3
280
AI開発ツールCreateがAnythingになったよ
tendasato
0
130
【初心者向け】ローカルLLMの色々な動かし方まとめ
aratako
7
3.5k
初めてAWSを使うときのセキュリティ覚書〜初心者支部編〜
cmusudakeisuke
1
260
Featured
See All Featured
Facilitating Awesome Meetings
lara
55
6.5k
Mobile First: as difficult as doing things right
swwweet
224
9.9k
Optimising Largest Contentful Paint
csswizardry
37
3.4k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
188
55k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
18
1.1k
Rails Girls Zürich Keynote
gr2m
95
14k
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.4k
Building Flexible Design Systems
yeseniaperezcruz
328
39k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
48
9.7k
What’s in a name? Adding method to the madness
productmarketing
PRO
23
3.7k
Stop Working from a Prison Cell
hatefulcrawdad
271
21k
A Modern Web Designer's Workflow
chriscoyier
696
190k
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