This repository was archived by the owner on May 14, 2024. It is now read-only.
Added fundamentals#27
Merged
mkruijt merged 11 commits intoHackYourFuture:masterfrom Dec 17, 2017
remarcmij:master
Merged
Conversation
Contributor
remarcmij
commented
Dec 15, 2017
- loops
- scope
mkruijt
suggested changes
Dec 16, 2017
Member
mkruijt
left a comment
There was a problem hiding this comment.
Hi @remarcmij thank you for rearranging the reviews. Can you explain why you changed the some of the topics to lowercase?
Week2/MAKEME.md
Outdated
| • Variables [var, let, const] | ||
| • Basic Data types [Strings, Numbers, Arrays, Booleans] | ||
| • Variables (var, let, const) | ||
| • Basic Data types (strings, numbers, arrays, booleans) |
README.md
Outdated
| |----|-----|----|--------| | ||
| |0.|Preparation for your first JavaScript session|[Pre-reading](/Week0/README.md)|-| | ||
| |1.|Git Session with Unmesh|[Reading Week 1](/Week1/README.md) | [Homework Week 1](/Week1/MAKEME.md)| | ||
| |2.|• Intro JavaScript (What is it, where can you use it for)<br>• [Variables (var, let, const)](fundamentals/variables.md)<br>• [Basic Data types (strings, numbers, arrays, booleans)](fundamentals/values.md)<br>• [Operators](fundamentals/operators.md)<br>• [Naming conventions](fundamentals/naming_conventions.md)|[Reading Week 2](/Week2/README.md)|[Homework Week 2](/Week2/MAKEME.md)| |
Member
There was a problem hiding this comment.
Why did you change (strings, numbers, arrays, booleans) to lowercase?
Contributor
Author
There was a problem hiding this comment.
@mkruijt String, Number and Boolean refer to the constructor functions. The lowercase versions refer to the primitive values. But if you prefer to stick to uppercase, that's fine with me too.
> typeof Number
'function'
> typeof 10
'number'
>
| |0.|Preparation for your first JavaScript session|[Pre-reading](/Week0/README.md)|-| | ||
| |1.|Git Session with Unmesh|[Reading Week 1](/Week1/README.md) | [Homework Week 1](/Week1/MAKEME.md)| | ||
| |2.|• Intro JavaScript (What is it, where can you use it for)<br>• [Variables (var, let, const)](fundamentals/variables.md)<br>• [Basic Data types (strings, numbers, arrays, booleans)](fundamentals/values.md)<br>• [Operators](fundamentals/operators.md)<br>• [Naming conventions](fundamentals/naming_conventions.md)|[Reading Week 2](/Week2/README.md)|[Homework Week 2](/Week2/MAKEME.md)| | ||
| |3.|• Git work flow :smiling_imp:<br>• [Advanced data types (objects)](fundamentals/objects.md) <br>• [Conditional execution](fundamentals/conditional_execution.md) <br>• [Statements vs Expressions](fundamentals/statements_expressions.md)<br> • [Loops (for/while)](fundamentals/loops.md)<br>• [Functions](fundamentals/functions.md) <br>• [Scope](fundamentals/scope.md)|[Reading Week 3](/Week3/README.md)|[Homework Week 3](/Week3/MAKEME.md)| |
| ``` | ||
|
|
||
| (Curious to know what a `foo` is? Check [this article](https://en.wikipedia.org/wiki/Metasyntactic_variable) on WikiPedia.) | ||
|
|
mkruijt
approved these changes
Dec 17, 2017
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.