diff --git a/quiz-app/src/assets/translations/ko.json b/quiz-app/src/assets/translations/ko.json index 623d57f8..e15c84cb 100644 --- a/quiz-app/src/assets/translations/ko.json +++ b/quiz-app/src/assets/translations/ko.json @@ -327,20 +327,20 @@ "title": "Lesson 4 - JavaScript 기초 - 데이터 타입: 강의 전 퀴즈", "quiz": [ { - "questionText": "Booleans are a data type you can use to test the length of a string", + "questionText": "불리언 타입은 문자열의 길이를 구하는데 쓸 수 있다.", "answerOptions": [ { - "answerText": "true", + "answerText": "네", "isCorrect": "false" }, { - "answerText": "false", + "answerText": "아니요", "isCorrect": "true" } ] }, { - "questionText": "The following is an operation you can perform on a string", + "questionText": "문자열에 사용할 수 있는 연산은?", "answerOptions": [ { "answerText": "concatenation", @@ -357,14 +357,14 @@ ] }, { - "questionText": "== and === are interchangeable", + "questionText": "== 와 === 는 서로 교체가능하다.", "answerOptions": [ { - "answerText": "true", + "answerText": "네", "isCorrect": "false" }, { - "answerText": "false", + "answerText": "아니요", "isCorrect": "true" } ] @@ -376,24 +376,24 @@ "title": "Lesson 4 - JavaScript 기초 - 데이터 타입: 강의 후 퀴즈", "quiz": [ { - "questionText": "Constants are the same as let and var to declare variables except", + "questionText": "상수(const)는 let 과 var에서 다음 기능만 사용하는 것과 같다.", "answerOptions": [ { - "answerText": "Constants must be initialized", + "answerText": "반드시 초기화되어야 한다", "isCorrect": "true" }, { - "answerText": "Constants can be altered", + "answerText": "변경 가능하다", "isCorrect": "false" }, { - "answerText": "Constants can be reassigned", + "answerText": "재할당 가능하다", "isCorrect": "false" } ] }, { - "questionText": "Numbers and ____ are JavaScript primitives that handle numeric data", + "questionText": "Numbers(숫자) 와 ____ 는 숫자 데이터를 다루는 JavaScript 원시 타입이다.", "answerOptions": [ { "answerText": "bigint", @@ -410,14 +410,14 @@ ] }, { - "questionText": "Strings can reside between both single and double quotes", + "questionText": "문자열은 작은 따옴표와 큰 따옴표 사이에 있을 수 있다.", "answerOptions": [ { - "answerText": "true", + "answerText": "네", "isCorrect": "true" }, { - "answerText": "false", + "answerText": "아니요", "isCorrect": "false" } ]