Skip to content

Commit fb4bc8d

Browse files
Stephen LeeStephen Lee
Stephen Lee
authored and
Stephen Lee
committed
fix punctuation errors in question explanations
1 parent d64bfc2 commit fb4bc8d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

00_Javascript Development Tools/02_Utilities/00_Tools and Utilities/01_Multiple Choice.prob.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
>>What are some tools you can use to share your code? <<
22
3-
( ) VS Code, Atom, Sublime Text {{Incorrect because these are text editors, not applications used to share your code with others..}}
3+
( ) VS Code, Atom, Sublime Text {{Incorrect because these are text editors, not applications used to share your code with others.}}
44
( ) Node Monitor {{Incorrect because node monitor is used for executing your JavaScript code, not for sharing your code with others.}}
55
( ) ESLint {{Incorrect because ESLint is used to help you code easier and is not a tool for sharing your code with others.}}
66
(x) Github (Open Source), Pastebin {{Correct, because Github and Pastebin are two ways of sharing your code online with others.}}

01_Introduction to JavaScript Development/02_Node.js Overview/00_JavaScript in the console/01_Multiple Choice.prob.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
( ) Node.js is used to run JavaScript on the browser {{Incorrect because Node.js does not run JavaScript on the browser.}}
55
(x) Node.js is used to run JavaScript outside the browser {{Correct because Node.js is used in the terminal to run JavaScript code locally.}}
66
( ) Node.js is used to run websites locally in your terminal {{Incorrect because this is not a Node.js feature.}}
7-
( ) Node.js is used to create websites with JavaScript features. {{Incorrect because this is not a Node.js feature.}}
7+
( ) Node.js is used to create websites with JavaScript features {{Incorrect because this is not a Node.js feature.}}
88

99
||Node.js is a platform that is used outside the browser. ||
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
>>What does the function `Math.random()` return? <<
22
3-
( ) An integer between 0 and 1, both inclusive {{Incorrect because `Math.random()` returns a floating-point, random number between 0 and 1. (inclusive of 0, but not 1)}}
3+
( ) An integer between 0 and 1, both inclusive {{Incorrect because `Math.random()` returns a floating-point, random number between 0 and 1 (inclusive of 0, but not 1).}}
44
( ) A floating-point number between 0 and 1, both inclusive {{Incorrect because `Math.random()` returns a floating-point, random number between 0 and 1. (inclusive of 0, but not 1)}}
55
(x) A floating-point number between 0 and 1, where 0 is inclusive and 1 is exclusive {{Correct because `Math.random()` returns a floating-point number between 0 and 1 (0 inclusive, 1 exclusive).}}
6-
( ) An integer between 0 and 100 {{Incorrect because `Math.random()` returns a floating-point, random number between 0 and 1. (inclusive of 0, but not 1)}}
7-
( ) A floating-point number between 0 and 1, both exclusive {{Incorrect because `Math.random()` returns a floating-point, random number between 0 and 1. (inclusive of 0, but not 1)}}
6+
( ) An integer between 0 and 100 {{Incorrect because `Math.random()` returns a floating-point, random number between 0 and 1 (inclusive of 0, but not 1).}}
7+
( ) A floating-point number between 0 and 1, both exclusive {{Incorrect because `Math.random()` returns a floating-point, random number between 0 and 1 (inclusive of 0, but not 1.)}}
88

99
||The `Math.random()` method does not return an integer value. ||

01_Introduction to JavaScript Development/04_Standard Javascript Objects/03_The Date Object/03_Multiple Choice.prob.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
33
(x) The current date, time, and time zone {{Correct because the `Date` object composes of the current date, time, and time zone of the user.}}
44
( ) The current date and time {{Incorrect because the `Date` object also includes the current time zone of the user.}}
5-
( ) The current date {{Incorrect because the `Date` object also includes the current time and time zone of the user}}
5+
( ) The current date {{Incorrect because the `Date` object also includes the current time and time zone of the user.}}
66
( ) The current time and time zone {{Incorrect because the `Date` object also includes the current date of the user.}}
7-
( ) The current time {{Incorrect because the `Date` object also includes the current date and time zone of the user}}
7+
( ) The current time {{Incorrect because the `Date` object also includes the current date and time zone of the user.}}
88

99
||The `Date()` object prints the current date of the user. ||

01_Introduction to JavaScript Development/05_Debugging in JavaScript/00_Debugging/01_Multiple Choice.prob.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
( ) The act of writing new code in your program {{Incorrect because debugging is the act of identifying and fixing errors/bugs in your program.}}
55
( ) The act of increasing code efficiency by simplifying your program {{Incorrect because debugging is the act of identifying and fixing errors/bugs in your program.}}
66
( ) The act of compiling your code {{Incorrect because debugging is the act of identifying and fixing errors/bugs in your program.}}
7-
( ) The act of making your program more user friendly by adding indentation and comments. {{Incorrect because debugging is the act of identifying and fixing errors/bugs in your program.}}
7+
( ) The act of making your program more user friendly by adding indentation and comments {{Incorrect because debugging is the act of identifying and fixing errors/bugs in your program.}}
88

99
||Debugging only occurs when the program doesn't work as intended. ||

0 commit comments

Comments
 (0)