일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 코딩 공부
- 탱글티저웻디탱글러
- props
- Code school
- 송도버스시간표
- 테드대본
- 생활코딩
- 머리빗추천
- ERD
- GIT
- 인프런
- 자바스크립트
- exerd
- 함수선언문
- 깃 설치
- function expression
- 윈도우
- relationship
- 헤어브러쉬추천
- javascript
- 직장인마우스
- install
- window
- function declaration
- 데이터베이스
- 자바스크립트 함수
- react js
- 리액트
- 코드스쿨
- 함수표현식
- Today
- Total
목록IT (18)
J's Rhapsody
Create a foreign key relationship in Table Designer Tool: SQL Server Management Studio 1. In Object Explorer, right-click the table that will be on the foreign-key side of the relationship and click Design. 테이블을 선택한 후, 마우스 오른쪽 버튼을 클릭하면 나오는 메뉴에서 'Design'을 선택한다. 2. From the Table Designer menu, click Relationships. Design 페이지에서 마우스 오른쪽 버튼을 클릭한 후, 메뉴에서 'Relationship'을 클릭한다. 3. In the Foreign-key Re..
Functions as Parameters, Arguments and Return ValuesWell, it stands to reason that some people might not want to experience the Haunted Hickory House if the fear is significantly elevated on that day.Inside the fearMessage function expression, use conditional statements (e.g., if, else if) to check the integer value of the fear variable, assigned on line 1, and decide whether its value is LOW or..
Displaying Function ContentsPeriodically, the devs at the Haunted Hickory House need to be reminded of their formula. They would like to view the contents of the function, rather than executing it.Write one line of code to alert the contents of the variable that stores the function to the screen. Here is the fearGenerated function expression assignment for reference:var fearGenerated = function(..
Using Function Expressions with ParametersThe devs at the Death-Defying Dogwoods have determined a specific formula for the quantifiable amount of fear generated at the theme park. Their formula is based on the amount of people, the amount of rain, and the amount of sharks. Yes. Sharks.var fearGenerated = function(numPeeps, rainInInches, numSharks) { var rainFear = numPeeps * rainInInches; var s..
Changin Declarations to ExpressionsDevelopers for the Forest of Function Expressions Theme Park have created a function declaration named forestFright, but they’ve decided not to keep the function in memory.Convert the function from a named function declaration to an anonymous function expression and assign it to a variable called runAway.1234567var runAway = function () { var toAlert = ""; for ..
Function Expressions ◆ 함수선언문(function declaration) Building functions within code execution rather than at program load time123function diffOfSquares(a, b){ return a*a - b*b;}cs ▶ Building in memory immediately when the program loads 위와 같이 정의된 함수는 스크립트가 로딩되는 시점에 바로 초기화를 하고 이를 Variable object에 저장한다.그렇기 때문에 함수 선언의 위치와는 상관없이 소스 내 어느 곳에서든지 호출이 가능하다. ◆ 함수표현식(function expression) 123var diff = functio..
스프링 MVC 프로젝트 생성하기 1. File >> New >> Other 2. New 창에서 Spring >> Spring Legacy Project 를 선택한다. 3. Project name을 입력한 후 Spring MVC Project를 선택한 후에 Next 를 클릭한다. 4. 처음 실행하면 필요한 것을 다운받아야 한다고 창이 뜬다. Yes 를 누르고 넘어간다. 5. Package 이름을 입력한다. 패키지 이름은 보통 해당 도메인의 역순으로 작성한다고 한다. 패키지 명은 원하는대로 작성한다. 입력 후 Finish를 누르면 프로젝트가 생성된다.
Eclipse UTF-8로 인코딩 변경하기 이클립스 기본 인코딩을 UTF-8로 변경한다. 1. Window >> Preferences 2. General >> Workspace를 클릭한 후 하단에 Text file encoding 영역에서 Other 부분에서 UTF-8을 선택한다. 그리고 Apply 버튼을 선택한다. 3. Preference에서 스크롤을 내려보면 Web항목이 있다. Web 항목을 열어서 CSS Files 을 선택하고 Encoding 영역에서 ISO 10646/Unicode(UTF-8)을 선택한 후 Apply버튼을 누른다. 4. 다음으로 HTML Files 를 선택한다. 역시 마찬가지로 Encoding영역을 ISO 10646/Unicode(UTF-8)로 설정해준다. 5. 마지막으로 Gene..