Skip to content
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

Mika #39

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Mika #39

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 20 additions & 5 deletions basics.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,39 @@
/* Create a `myName` variable and assign it a String value */

var myName = 'Mika';
/* Create a `person` variable and give it 2 properties,
* `name`, assign it the same name as before,
* as well as an `age` (number);
*/

var person = {
name: myName,
age: 27,
};
/* Create a variable called `canDrive`,
* if it should be true if your person object is at least 16 years old
*/

var canDrive = null
if (person.age >= 16) {
canDrive = true
};
/* Create a function called `greet`,
* it should take a 1 parameter, `name`
* and it should print "Hello, my name is {name}"
*/

function greet(name) {
console.log("Hello, my name is " + name);
}
greet('Mika');
/* Create an array called `dataTypes` with atleast 1 of every data type;
* (there are 6 different data types);
*/

var dataTypes = [false, 'orange', 0, null, {}, undefined]
/* Create a `dog` object
* it should have a `bark` function that makes your dog bark!
* It should also have a name attribute with the value of 'Spot'
*/
var dog = {
name: "Spot",
bark: function(){
console.log('bark!');
}
};