목록전체 글 (373)
Silver Library (Archived)
What is a JavaScript Expression? - Mastering JS What is a JavaScript Expression? Many frameworks, like Vue, allow you to embed JavaScript expressions in HTML. But what is an expression? Can you put `if` statements in an expression? masteringjs.io Expression do evaluate to a value. 0 // 0 1 + 1 // 2 'Hello' + ' ' + 'World' // 'Hello World' { answer: 42 } // { answer: 42 } Object.assign({}, { answ..
https://mireu-san.github.io/Kokoa-Clone-2020/
-IT enthusiast, multi-lingualist (Korean = English >= Japanese >>> Mandarin) -Borned in Korea. Raised in Australia over a decade. -Graduate bachelor of economics, Queensland University of Technology (2017) -Mandatory military service (2017) -Discharged from the military(finished the service), placed to the reserved force (2019) - Managed online B2C channel. Experienced how data base statistic re..
#note: Django will not be mentioned in here. See the next record - Day 2. * WSL Set up ---- done * pipenv installation ---- done cd Documents mkdir airbnb-clone cd airbnb-clone pipenv --three code . #[on VSCode] pipenv shell #this action allows me to select and access inside a bubble (virtual workplace, like sandbox) #[potential error spot] Example's Django version was 2.2.5 But, I installed the..