반응형
반응형
본문 바로가기

프론트엔드4

[펌] IT 개발자 취준생 자주 묻는 질문들 FAQs [펌] IT 개발자 취준생 자주 묻는 질문들 FAQs Q01. 제가 취준생인데 자바랑 스프링을 하나도 못하는데 지금이라도 해야될까요?? 백엔드 지망하고 지금까지 장고로 개발해왔습니다. 대기업은 거의 대부분 스프링 사용해서 스프링을 지금부터라도 공부해야하는지 고민입니다. [A]: 장고가 접하기 어렵고 난이도 있는 프레임웍입니다. 신입 준비하신다면 굳이 스프링을 새로 배우기보다 장고로 개발한 포트폴리오를 어필하면서 회사의 스택을 빠르게 익힐수있다고 표현하시면 되겠습니다. 아마 스프링 경험이 없지만 자바 경험이 있다며 어필하는것도 도움이 될겁니다. 장고 프레임웍이 더 난이도 있다는것도 알고 계실것 같아요. Q02. 저는 개발 공부를 하다가 기획쪽에 흥미가 생겨 기획 공부를 하고 있는 대학생인데요. 현재 고민이.. 2023. 1. 18.
Responsive Website Development and Design Specialization Responsive Website Development and Design Specialization www.coursera.org/specializations/website-development#courses Responsive Website Development and Design Offered by 런던 대학교. Responsive web design is all about creating the best user experience regardless of whether a user is accessing your site from a desktop computer, a mobile phone, or a tablet. This Specialisation covers the basics of mod.. 2021. 1. 10.
[JavaScript #02] Functions [JavaScript #02] Functions 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 // Greeting function function greeting(name, time) { console.log('Good ' + time + ', ' + name + '!'); } // Calculating cube function function cube{number) { return number * number * number; } //executing greeting function greeting('John', 'Morning'); //prints out "Good Morning, John!" //executing cube function console.log(cube(2)); /.. 2020. 12. 13.
[JavaScript #01] Object [JavaScript #01] Object 1 2 3 4 5 6 7 8 let collegeStudent = { name: 'John'; age: 23; major: ComputerScience; minor: Management; }; console.log(collegeStudent.age); We just created an object named 'collegeStudent.' It has four different properties; name, age, major, and minor. At line 8, its code will print out "23" as an integer type. We will look further later when we deeply get into Object-Or.. 2020. 12. 13.

반응형