mirror of
https://github.com/microsoft/Web-Dev-For-Beginners.git
synced 2025-08-13 02:04:18 +02:00
FIX : fix url for translations folder
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
# JavaScript 기초: 데이터 타입
|
||||
|
||||

|
||||

|
||||
> Sketchnote by [Tomomi Imura](https://twitter.com/girlie_mac)
|
||||
|
||||
## 강의 전 퀴즈
|
||||
[Pre-lecture quiz](.github/pre-lecture-quiz.md)
|
||||
[Pre-lecture quiz](../.github/pre-lecture-quiz.md)
|
||||
|
||||
해당 강의에서는 웹에서 상호작용을 제공하는 언어인 JavaScript의 기초를 다룹니다.
|
||||
|
||||
@@ -185,7 +185,7 @@ let myString2 = "World";
|
||||
JavaScript는 때때로 놀라운 방법으로 데이터 타입을 처리하는 것으로 유명합니다. 'gotchas'에 대해 약간 알아보세요. 예시: 대소문자 구분은 물릴 수 있습니다! 콘솔에서 다음을 시도하십시오: `let age = 1; let Age = 2; age == Age` (resolves `false` -- why?). 다른 문제를 찾을 수 있습니까?
|
||||
|
||||
## 강의 후 퀴즈
|
||||
[Post-lecture quiz](.github/post-lecture-quiz.md)
|
||||
[Post-lecture quiz](../.github/post-lecture-quiz.md)
|
||||
|
||||
## 리뷰 & 자기주도 학습
|
||||
|
||||
@@ -193,4 +193,4 @@ JavaScript는 때때로 놀라운 방법으로 데이터 타입을 처리하는
|
||||
|
||||
## 과제
|
||||
|
||||
[Data Types Practice](assignment.md)
|
||||
[Data Types Practice](../assignment.md)
|
@@ -1,10 +1,10 @@
|
||||
# JavaScript 기초: 메소드와 함수
|
||||
|
||||

|
||||

|
||||
> Sketchnote by [Tomomi Imura](https://twitter.com/girlie_mac)
|
||||
|
||||
## 강의 전 퀴즈
|
||||
[Pre-lecture quiz](.github/pre-lecture-quiz.md)
|
||||
[Pre-lecture quiz](../.github/pre-lecture-quiz.md)
|
||||
|
||||
코드 작성에 대해 생각할 때 항상 코드를 읽을 수 있도록 해야합니다. 직설적이지 않지만, 코드는 작성된 것보다 더 많이 읽힙니다. 개발자의 툴 박스에서 유지관리 가능한 코드를 보장하는 핵심 도구는 **함수**입니다.
|
||||
|
||||
@@ -181,7 +181,7 @@ setTimeout(3000, () => {
|
||||
함수와 메소드의 차이점을 한 문장으로 표현할 수 있나요? 시도해보세요!
|
||||
|
||||
## 강의 후 퀴즈
|
||||
[Post-lecture quiz](.github/post-lecture-quiz.md)
|
||||
[Post-lecture quiz](../.github/post-lecture-quiz.md)
|
||||
|
||||
## 리뷰 & 자기주도 학습
|
||||
|
||||
@@ -189,4 +189,4 @@ setTimeout(3000, () => {
|
||||
|
||||
## 과제
|
||||
|
||||
[Fun with Functions](assignment.md)
|
||||
[Fun with Functions](../assignment.md)
|
@@ -1,10 +1,10 @@
|
||||
# JavaScript 기초: 결정하기
|
||||
|
||||

|
||||

|
||||
> Sketchnote by [Tomomi Imura](https://twitter.com/girlie_mac)
|
||||
|
||||
## 강의 전 퀴즈
|
||||
[Pre-lecture quiz](.github/pre-lecture-quiz.md)
|
||||
[Pre-lecture quiz](../.github/pre-lecture-quiz.md)
|
||||
|
||||
결정을 내리고 코드가 실행되는 순서를 제어하면 코드를 재사용하며 강력하게 만들 수 있습니다. 이 강의에서는 JavaScript에서 데이터 흐름을 제어하기 위한 구문과 논리 자료형 데이터 타입을 함께 사용하는 중요성을 다룹니다.
|
||||
|
||||
@@ -160,7 +160,7 @@ if (firstNumber > secondNumber) {
|
||||
논리 연산자로 프로그램을 먼저 만든 뒤, 삼항 표현식을 사용하여 다시 작성하십시오. 어떤 구문을 선호합니까?
|
||||
|
||||
## 강의 후 퀴즈
|
||||
[Post-lecture quiz](.github/post-lecture-quiz.md)
|
||||
[Post-lecture quiz](../.github/post-lecture-quiz.md)
|
||||
|
||||
## 리뷰 & 자기주도 학습
|
||||
|
||||
@@ -170,4 +170,4 @@ Josh Comeau'의 wonderful [operator lookup](https://joshwcomeau.com/operator-loo
|
||||
|
||||
## 과제
|
||||
|
||||
[Operators](assignment.md)
|
||||
[Operators](../assignment.md)
|
||||
|
@@ -1,10 +1,10 @@
|
||||
# JavaScript 기초: 배열과 반복
|
||||
|
||||

|
||||

|
||||
> Sketchnote by [Tomomi Imura](https://twitter.com/girlie_mac)
|
||||
|
||||
## 강의 전 퀴즈
|
||||
[Pre-lecture quiz](.github/pre-lecture-quiz.md)
|
||||
[Pre-lecture quiz](../.github/pre-lecture-quiz.md)
|
||||
|
||||
이 강의에서는 웹에서 상호 작용을 제공하는 언어인 JavaScript의 기본 사항을 다룹니다. 데이터를 컨트롤하는 데 사용하는 배열과 반복문에 대해 알아 봅니다.
|
||||
|
||||
@@ -112,7 +112,7 @@ for (let i = 0; i < iceCreamFlavors.length; i++) {
|
||||
for문과 while문 외에 배열을 반복하는 다른 방법이 있습니다. [forEach](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach), [for-of](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...of) 그리고 [map](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map)도 있습니다. 해당 기술 중 하나를 사용하여 배열 반복을 다시 작성하십시오.
|
||||
|
||||
## 강의 후 퀴즈
|
||||
[Post-lecture quiz](.github/post-lecture-quiz.md)
|
||||
[Post-lecture quiz](../.github/post-lecture-quiz.md)
|
||||
|
||||
|
||||
## 리뷰 & 자기주도 학습
|
||||
@@ -121,4 +121,4 @@ JavaScript의 배열에는 많은 메서드를 가져서 데이터 조작에 매
|
||||
|
||||
## 과제
|
||||
|
||||
[Loop an Array](assignment.md)
|
||||
[Loop an Array](../assignment.md)
|
||||
|
@@ -4,10 +4,10 @@ JavaScript는 웹의 언어입니다. 이 네 가지 강의에서 기초를 배
|
||||
|
||||
### 주제
|
||||
|
||||
1. [변수와 데이터 타입](1-data-types/README.md)
|
||||
2. [함수와 메소드](2-functions-methods/README.md)
|
||||
3. [JavaScript로 결정하기](3-making-decisions/README.md)
|
||||
4. [배열과 반복](4-arrays-loops/README.md)
|
||||
1. [변수와 데이터 타입](../1-data-types/translations/README.ko.md)
|
||||
2. [함수와 메소드](../2-functions-methods/translations/README.ko.md)
|
||||
3. [JavaScript로 결정하기](../3-making-decisions/translations/README.ko.md)
|
||||
4. [배열과 반복](../4-arrays-loops/translations/README.ko.md)
|
||||
|
||||
### 크레딧
|
||||
|
||||
|
Reference in New Issue
Block a user