Skip to content
Snippets Groups Projects
Commit 8df88018 authored by 장 무현's avatar 장 무현
Browse files

Merge branch 'mybranch' into 'main'

second

See merge request !2
parents c653b161 0f2e7468
No related branches found
No related tags found
1 merge request!2second
//하이하이
console.log('hihi');
\ No newline at end of file
var name = '코드팩토리';
console.log(name);
var age = 32;
console.log(age);
let ive = '아이브';
console.log(ive);
//let과 var은 추후 값을 변경가능
ive = '안유진';
console.log(ive);
const newJeans = '뉴진스';
console.log(newJeans);
// newJeans = '코드팩토리';
var name;
let girlfriend;
console.log(girlfriend);
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment