분류 전체보기(91)
-
23/10/25 til
var obj = { 0 : "a" , 1 : "b" , 2 : "C" , length : 3} //라는 오브젝트 //를 쉽게 어레이로 만드는법 let arr = array.from(obj); //하면 [ "a" , "b", "c" ] 형태의 어레이로 바로 바꿔준다. 호호호 ~~~~~ function person(name , gender){ this.name = name ; this.gender= gender; } //해당 펑션을 디스의 값으로 설정된 펑션 function student(name , gender , school){ person.call(this , name , gender) //this.name = name; //this.gender=gender; // 이값들은 필요없다 person함수를..
2023.10.25 -
23/10/24 til (git hub)
git init // 새 코딩(프로젝트) 시작할때 git add . //폴더 안에 모든 파일을 저장할 준비를 한다 git add "파일명" //폴더 안에 특정 파일만 저장할 준비를 한다. git commit -m "최종수정" //저장한다 따옴표안에는 저장시에 주석같은거 남긴다. git status //현재 git상태를 확인하는건가? 수정됐는지 어디 브랜치에 있는지?? git log //git 진행내역을 표시해준다 뭘했는지? git clone "메인 협업자의 깃헙 주소" //협업자 등록을 한 프로젝트 장의 깃헙 주소를 가져온다. git push origin main(브랜치명) //로컬영역의 코딩을 메인브랜치나 해당브랜치 github으로 저장한다. git pull origin main(브랜치명) //gith..
2023.10.24 -
23/10/12 til 자바스크립트 문법 종합반(2)
function add(x,y) { return x+y } ; //함수 이름 add로 설정 하고 안에 변수 x,y로 잡고 x+y가 함수기능으로 설정 let add2 = function(a,b) { return a+b; //이하동문 }; console.log(add(2,3)); //5 let result1 = add(4,5); console.log(result1); //9 let result2 = add2(10,20); console.log(result2); //30 let x = 10; function printx(){ console.log(x); }; console.log(x); //10 printx(); //x값을 펑션 바깥에 주고 펑션 안쪽에서 콘솔로그 x값을 함수로 지정 //10 잘나옴 funct..
2023.10.12 -
23/10/12 til 자바스크립트 문법 종합반(1)
console.log("hello world"); /////////////// 개발자 검사의 기본꼴 콘솔창에 정보 뜬다///////////// //변수 5가지 주요 개념 //변수 이름 변수 값 변수 할당 변수선언 변수 참조 var myvar = "hello world"; var myvar = "test1" myvar = "good"; console.log(myvar); //var myvar1; //myvar1 = 3; let mylet = "hello world1" //let mylet = "test2" mylet = "good1" console.log(mylet); const myconst = "hello world2" //const myconst = "test3" myconst = "good3" co..
2023.10.12 -
23/10/12 wil (1)
DOCTYPE html> 스파르타플릭스 @import url('https://fonts.googleapis.com/css2?family=Gowun+Dodum&display=swap'); * { font-family: 'Gowun Dodum', sans-serif; } ////////////////폰트 따는 법 ///////////////// .main { background-color: green; color: white; background-image: url('https://occ-0-1123-1217.1.nflxso.net/dnm/api/v6/6AYY37jfdO6hpXcMjf9Yu5cnmO0/AAAABeIfo7VL_VDyKnljV66IkR-4XLb6xpZqhpLSo3JUtbivnEW4s60PD27m..
2023.10.12 -
23/10/11 kpt 회고 2023.10.11