JQuery 공부할 수 있는 사이트
1. https://www.w3schools.com/jquery/default.asp jQuery Tutorial W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com 2. https://www.tcpschool.com/jquery/intro#google_vignette 코딩교육 티씨피스쿨 4차산업혁명, 코딩교육, 소프트웨어교육, 코딩기초, SW코딩, 기초코딩부터 자바 파이썬 ..
2024. 4. 16.
웹호스팅, 서버
1. 깃허브 https://github.com/ GitHub: Let’s build from here GitHub is where over 100 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and fea... github.com 1. 웹호스팅 서비스 https://www.dothome.co.kr/ 무료홈페이지 | 무료호스팅 | 닷홈 닷홈은 도메인, 무료호스팅, 무료홈페이지, 웹호스팅, 웹메일, SSL보안인증서, 서버호스팅 등 호스팅 서비스를 제공하고 있습니..
2024. 4. 16.
배열
배열을 만드는 방법은 3가지 입니다. let arrList = [배열요소1, 배열요소2]; let arrList = Array(배열요소1, 배열요소2); let arrList = new Array(배열요소1, 배열요소2); 보다시피 결과값은 모두 똑같으니 편한 걸 쓰면 됩니다. //배열 리터럴을 이용하는 방법 let arrList1=[-1,0,true,"문자열"]; document.write(arrList1 + " "); //-1,0,true,"문자열" // Array객체의 생성자를 이용하는 방법 let arrList2=Array(-1,0,true,"문자열"); document.write(arrList2 + " "); //-1,0,true,"문자열" // new 연산자를 이용한 Array객체 생성 방법 ..
2024. 4. 15.