Open
Conversation
mikeboyle
reviewed
Dec 11, 2020
|
|
||
| // Number 1.25 | ||
| 400 > 200 | ||
| // true |
There was a problem hiding this comment.
What is the type of this expression?
mikeboyle
reviewed
Dec 11, 2020
| // true | ||
|
|
||
| 1 !== 1 | ||
| ?? False |
There was a problem hiding this comment.
- what is the type of this expression?
mikeboyle
reviewed
Dec 11, 2020
Comment on lines
+64
to
+72
| // true | ||
|
|
||
| true && false | ||
|
|
||
| // false | ||
| 20 % 6 | ||
| // 2 | ||
|
|
||
| "a" + "b" | ||
|
|
||
| // "ab" |
There was a problem hiding this comment.
What are the types of these expressions?
Author
|
Number expression.
…On Fri, Dec 11, 2020 at 12:03 PM Mike Boyle ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In README.md
<#186 (comment)>
:
> 400 > 200
+// true
What is the type of this expression?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#186 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AR5JN7BPKGI5SSBOIREJTKLSUJGEPANCNFSM4UVTF4DA>
.
|
Author
|
Boolean expression.
…On Fri, Dec 11, 2020 at 12:03 PM Mike Boyle ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In README.md
<#186 (comment)>
:
> +// true
true && false
-
+// false
20 % 6
+// 2
"a" + "b"
-
+// "ab"
What are the types of these expressions?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#186 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AR5JN7FN6UKIPQACKXHVGADSUJGHLANCNFSM4UVTF4DA>
.
|
Author
|
Good afternoon Mike
Thank you for pointing these out. I will go back into the assignment to do
the corrections. I just am moving very very slowly today, and will take a
while. But, please know I am working on this in the moment and will
continue until it is done. I am just focusing on maintaining the
bandwidth to focus.
I am attempting to complete the variables lab, which is outstanding. After
that is complete I will work on the rest.
Looking forward - Tina J.
Thank you for the c
…On Fri, Dec 11, 2020 at 12:03 PM Mike Boyle ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In README.md
<#186 (comment)>
:
> +// true
true && false
-
+// false
20 % 6
+// 2
"a" + "b"
-
+// "ab"
What are the types of these expressions?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#186 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AR5JN7FN6UKIPQACKXHVGADSUJGHLANCNFSM4UVTF4DA>
.
|
mikeboyle
reviewed
Dec 11, 2020
|
|
||
| ```js | ||
| typeof 4 | ||
| // undefined // 4 |
There was a problem hiding this comment.
Does this return "undefined" or does it return 4?
mikeboyle
reviewed
Dec 11, 2020
|
|
||
| 2 === 1 || 3 === 4 | ||
|
|
||
| // 'false' |
There was a problem hiding this comment.
Does this return false (boolean type) or "false" (in quotes, string type)? There is a difference between the two.
mikeboyle
reviewed
Dec 11, 2020
|
|
||
| Write a step-by-step evaluation for the following expression: `'ca' + 'ter' + 'pi' + 'llar'`. | ||
|
|
||
| // caterpillar |
There was a problem hiding this comment.
Can you break this down into smaller steps?
mikeboyle
reviewed
Dec 11, 2020
|
|
||
| Write a step-by-step evaluation for the following expression: `2 * 4 === 8 && 'car' + 'pool' === 'carpool'`. | ||
|
|
||
| // true |
mikeboyle
reviewed
Dec 11, 2020
| ## Problem Ten | ||
|
|
||
| Write a step-by-step evaluation for the following expression: `'1' + '2' + '3' - '1'`. | ||
| // 122 No newline at end of file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Continuing to work on this.