Basic Javascript #1_variable
right click on a webpage and select Inspect. We can use 'Console' tab for Javascript.
Let's make a list
let a_list = ['수박','참외','배']
a_list[1] shows '참외'
To add another variable,
a_list.push('감')
a_list shows [수박', '참외', '배', '감']
Dictionar...
olliekim.hashnode.dev1 min read