Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitdc3f047

Browse files
javascript-tutorial#359 [함수의 prototype 프로퍼티] 과제1 문제 번역
1 parent1f6d262 commitdc3f047

File tree

1 file changed

+7
-7
lines changed
  • 1-js/08-prototypes/02-function-prototype/1-changing-prototype

1 file changed

+7
-7
lines changed

‎1-js/08-prototypes/02-function-prototype/1-changing-prototype/task.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ importance: 5
22

33
---
44

5-
#Changing"prototype"
5+
#"prototype" 변경하기
66

7-
In the code below we create`new Rabbit`, and then try to modify itsprototype.
7+
아래 코드에선`new Rabbit`를 만들고`Rabbit``"prototype"`을 변겅합니다.
88

9-
In the start, we have this code:
9+
시작 코드는 다음과 같습니다.
1010

1111
```js run
1212
functionRabbit() {}
@@ -20,7 +20,7 @@ alert( rabbit.eats ); // true
2020
```
2121

2222

23-
1.We added one more string (emphasized), what`alert` shows now?
23+
1.아래와 같은 코드를 추가(강조된 줄)하면 얼럿창엔 무엇이 출력될까요?
2424

2525
```js
2626
functionRabbit() {}
@@ -37,7 +37,7 @@ alert( rabbit.eats ); // true
3737
alert(rabbit.eats );// ?
3838
```
3939

40-
2....Andif the code is likethis (replaced one line)?
40+
2.아래와 같이 코드를 변경하면 얼럿창엔 무엇이 출력될까요?
4141

4242
```js
4343
function Rabbit() {}
@@ -54,7 +54,7 @@ alert( rabbit.eats ); // true
5454
alert( rabbit.eats ); // ?
5555
```
5656

57-
3.Likethis (replaced one line)?
57+
3.아래와 같이`delete`를 사용하면 얼럿창엔 무엇이 출력될까요?
5858

5959
```js
6060
function Rabbit() {}
@@ -71,7 +71,7 @@ alert( rabbit.eats ); // true
7171
alert( rabbit.eats ); // ?
7272
```
7373

74-
4.The last variant:
74+
4.마지막 코드를 실행하면 얼럿창엔 무엇이 출력될까요?
7575

7676
```js
7777
function Rabbit() {}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp