Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
b721bfb
Create idoPractive.js
idocats Jul 8, 2020
9799213
Update comment-practice.js
idocats Jul 8, 2020
3fd8cae
Merge pull request #112 from Turnout-Activism/development
iamamonte Jul 15, 2020
f4c6cd3
Create node.js.yml
idocats Jul 17, 2020
babccbe
Update .gitignore
idocats Jul 17, 2020
7fb416c
Create launch.json
idocats Jul 17, 2020
836fa25
Update .babelrc
idocats Jul 17, 2020
77f5012
Create app.js
idocats Jul 17, 2020
783b8fe
Create app.js.map
idocats Jul 17, 2020
25c2c8f
Create app.js
idocats Jul 17, 2020
10e972c
Update comment-practice.js
idocats Jul 17, 2020
b5f61c2
Delete gulpfile.esm.js
idocats Jul 17, 2020
0d25571
Create gulpfile.js
idocats Jul 17, 2020
cd36189
Create animal.js
idocats Jul 17, 2020
085fe8a
Create Employee
idocats Jul 17, 2020
e11dba9
Create language.js
idocats Jul 17, 2020
6fcdf2c
Create library.js
idocats Jul 17, 2020
39bfd40
Create plant.js
idocats Jul 17, 2020
f983f23
Create rome.js
idocats Jul 17, 2020
02e36ea
Create Shape.js
idocats Jul 17, 2020
ab53790
Create snack.js
idocats Jul 17, 2020
b2364b6
Create Student.js
idocats Jul 17, 2020
b8ef034
Create teammate.js
idocats Jul 17, 2020
71d0c30
Update template.js
idocats Jul 17, 2020
8cb33e1
Update package-lock.json
idocats Jul 17, 2020
829b11f
Update package.json
idocats Jul 17, 2020
dc3901f
Update readme.md
idocats Jul 17, 2020
40e662e
Update arithmetic.js
idocats Jul 17, 2020
cfd9cff
Create caesarCipher.js
idocats Jul 17, 2020
f5979cc
Create colorConverter.js
idocats Jul 17, 2020
de823da
Create encode-decode.js
idocats Jul 17, 2020
5e0c8e9
Update product.js
idocats Jul 17, 2020
22c1298
Create sum.js
idocats Jul 17, 2020
01ad647
Create sumOfNumber.js
idocats Jul 17, 2020
d2c33e8
Create test.js
idocats Jul 17, 2020
8a3eb60
Create vowelSwitcher.js
idocats Jul 17, 2020
2857ec6
Create wordArray.js
idocats Jul 17, 2020
2ac50ef
Create app.js
idocats Jul 17, 2020
5bcb6d1
Create allModels.js
idocats Jul 17, 2020
6facde9
Update allServices.js
idocats Jul 17, 2020
7f94aed
Create backwardsTests.js
idocats Jul 17, 2020
55efea3
Update caeserCipherTests.js
idocats Jul 17, 2020
3b786f0
Create colorConverter.test.js
idocats Jul 17, 2020
d6de7e4
Create lowercaseTest.js
idocats Jul 17, 2020
475dd30
Create moduloTest.js
idocats Jul 17, 2020
e1cd90a
Create productTest.js
idocats Jul 17, 2020
16b0b92
Create spacesTest.js
idocats Jul 17, 2020
dcb6ab1
Create sumOfNumberTest.js
idocats Jul 17, 2020
b186b0a
Create sumTest.js
idocats Jul 17, 2020
7ff83c9
Create templateTest.js
idocats Jul 17, 2020
c3e82d8
Create GioFox.java
idocats Jul 17, 2020
4d283bd
Update package-lock.json
idocats Jul 17, 2020
f024750
Update roster.md
idocats Jul 17, 2020
47f8520
Create dogs.js
idocats Jul 17, 2020
bfc3e85
Merge remote-tracking branch 'upstream/development' into testBranch
idocats Jul 21, 2020
5a3a7a2
Delete dogs.js
idocats Jul 21, 2020
259d662
Create dogs.js
idocats Jul 21, 2020
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
6 changes: 6 additions & 0 deletions CommentingPractice/comment-practice.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,14 @@ import {OakTree} from './model/plant.js'

console.log(giovann.helloWorld());

<<<<<<< HEAD
var MyString2 = "My name is Ido";
consol.log(adil.myChars(MyString2));

=======
var name = "Richard";
console.log(richard.randomVowels(name));
>>>>>>> upstream/master


//utilizing template.js model for task 3 ~ Kyle Kobayashi
Expand Down
73 changes: 73 additions & 0 deletions CommentingPractice/model/dogs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
/**
* @file dogs.js
* @author Ido Katz
*/


export default class Dogs {

/**
* @description creates a Dogs object with a breed and age parameter
*
* Constructor
* @param {string} breed - breed of Dog
* @param {int} age - age of Dog in years
*
*/
constructor(breed, age) {
this.breed = breed;
this.age = age;
}

//function will return the breed of Dog.
getBreed() {
return this.breed;
}
//function will return the age of Dog.
getAge() {
return this.age;
}

//function will set the Breed of dog
/**
* @param {string} breed - breed of Dog
*/
setBreed(breed) {
this.breed = breed;
}
//function will set the age of dog
/**
* @param {int} age - age of Dog
*/
setBreed(age) {
this.breed = age;
}

}

/**
* Labrador Class
*/
export class Labrador extends Dogs {

/**
* Constructor
*/
constructor(age, color) {
super("Labrador") //calling constructor or paraent class
this.age = age;
this.color = color;
}

//function will return the color of Dog.
getColor() {
return this.color;
}

//function will set the color of dog
/**
* @param {String} color - color of Dog
*/
setBreed(color) {
this.breed = color;
}
File renamed without changes.
6 changes: 6 additions & 0 deletions CommentingPractice/services/idoPractive.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
let helloIdo = function () { //I copied this code from Sophia
console.log('Hello Ido')
}

let result = helloIdo();
console.log(result);