본문 바로가기

Python_WEB/JavaScript

[freecodecamp]JavaScript 하나의 소수를 다른 소수로 나누기

반응형

이제 한 소수를 다른 소수로 나눕니다.

 

Q>

1. quotient가 2.2가되도록 0.0을 변경합니다.

2. 변수 quotient몫은 2.2와 같아야합니다.

3. 4.4를 2로 나누려면 / 연산자를 사용해야합니다.

4. quotient 변수는 한 번만 할당되어야합니다.

 

A>

var quotient = 4.4 / 2.0; // Change this line

 

https://www.freecodecamp.org/

 

freeCodeCamp.org

Learn to code. Build projects. Earn certifications.Since 2015, 40,000 graduates have gotten jobs at tech companies including Google, Apple, Amazon, and Microsoft.

www.freecodecamp.org

 

반응형