1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| function introduction(){
name='abdulaziz jamaleddin'
age=19
education=['devmountain','henry ford college','apple developer academy']
hobbies=['coding','music','reading']
}
function skills(){
languages=['javascript','swift','python','c','c++']
technologies=['axios','express','git','github','pandas',
'matplotlib','seaborn','postgress','bycrypt','aws']
}
function location(){
location=['michigan']
}
function current(){
studying=[ 'computer science','data analysis'],
working=[ 'N/A' ]
}
function facts(){
favorites={
book: '1984',
movie: 'inception',
hobby: 'reading',
song: 'woods, mac miller',
animal: 'cat',
}
}
|