-
Notifications
You must be signed in to change notification settings - Fork 10
hw6 #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: Yunus-Unsal
Are you sure you want to change the base?
hw6 #6
Conversation
|
|
||
|
|
||
|
|
||
| console.log('second method'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The second method to increment counter by 2 should be:
counter++;
counter++;
counter = 2 assigns the value of 2 to counter, but doesn't increase the value by 2.
epq
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
| //4 | ||
|
|
||
| let a ="sky" | ||
| console.log("value of string wil be:rainbow"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the value of the string a will be rainbow? but line 19 has let a = "sky".
|
Thank you so much Elizabeth.
…On Sat, Aug 31, 2019 at 11:21 AM Elizabeth Chan ***@***.***> wrote:
***@***.**** commented on this pull request.
👍
------------------------------
In script.js
<#6 (comment)>
:
> +//2
+console.log('I\'m awesome');
+
+//3
+
+let age;
+console.log("i was happy when i was 14");
+console.log("14");
+age=14;
+console.log("i was happy when i was 14");
+console.log("14");
+
+//4
+
+let a ="sky"
+console.log("value of string wil be:rainbow");
the value of the string a will be rainbow? but line 19 has let a = "sky".
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#6?email_source=notifications&email_token=AMSH25WNP5Z7ZLLJLGDK7B3QHKEANA5CNFSM4IPJQYDKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDJ3K2Q#pullrequestreview-282309994>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AMSH25XRAR3MP2DZLOMMCGLQHKEANANCNFSM4IPJQYDA>
.
|
good job 👍