Skip to content

Commit 1e67ae9

Browse files
authored
Merge pull request #8 from Exarchiasghost/master
Updated Basic Objects README.md
2 parents 4db90c5 + f73731d commit 1e67ae9

File tree

1 file changed

+27
-12
lines changed

1 file changed

+27
-12
lines changed

Basic_Concepts/Objects/README.md

Lines changed: 27 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,40 @@
22

33
# Objects
44

5-
This MD file serves as example/template.
5+
Objects are variables that are storing more values, (properties). Objects are a part of the world of Object Oriented Programming, a way of programming that is highly recommended to learn more about it.
66

7-
It will be filled up soon.
87

9-
(for Bucky to fill up)
8+
# Course Documentation
9+
1010

11+
## Objects
1112

12-
# Course Documentation
13+
In our example for objects we used the following code:
14+
15+
16+
var person = {
17+
name: "Bucky",
18+
age: 87
19+
};
1320

14-
(this for me to fill up with every element
21+
22+
That is the typical syntax of javascripts object as well:
23+
24+
var objectname = {
25+
property1: "property1valueinstringformat",
26+
property2: property2valueinarithmeticformat
27+
};
1528

16-
that you use in lessons. syntax
29+
We achieve to insert more values in one variable by turning it to an object and by use the "property" format to each of our value
30+
1731

18-
explaination and links for more)
32+
{ property: valueofproperty };
1933

20-
## Element to explain
34+
Curley brackets are defining the are of the properties, and also they defining that our variable is an object, and we separate our properties with the comma symbol.
2135

22-
(for example console.log)
36+
- Read more about [Object Oriented
37+
Programming](https://en.wikipedia.org/wiki/Object-oriented_programming)
38+
- in Wikipedia Read more about [Javascript
39+
Objects](http://www.w3schools.com/js/js_objects.asp) in W3schools
2340

24-
***Links***
25-
- Wikipedia
26-
- Anotherlink,com
41+
> Written with [StackEdit](https://stackedit.io/).

0 commit comments

Comments
 (0)