Skip to content
Open
Show file tree
Hide file tree
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
20 changes: 20 additions & 0 deletions js/filterLongWords.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// ### filterLongWords.js
// Write a program that will take an array of words. Using a variable called `maxLength`, push words that are less than the `maxLength` into a new array, and `console.log` the value of the new array.

// **Requirements**
// * Your array of words should be stored in a variable, which can be named whatever you like
// * `maxLength` should be a positive number


// dont understand the qns,

var words = ['pachinko', 'coffee', 'ice', 'cigar', 'backpack', 'tattoo']
var maxLength = []
var tooLong = ''

var shortWords = words.filter(function(word){
return word.length < 5;
});

console.log('shortWords ' + shortWords)
console.log('This is not finished!')
17 changes: 17 additions & 0 deletions js/fizzbuzz.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// ### fizzbuzz.js
// Implement Fizz Buzz. Loop from 1 to 100. If the number is divible by both 3 and 5, print "fizzbuzz". Otherwise, if the number if divisible by 3, print "fizz", or, if the number is divisible by 5, print "buzz". If none of the above are true, print the number. This is a very common interview question!

fizzbuzz = function () {
for (var i = 1; i < 101; i ++) {
if (i % 3 === 0 && i % 5 === 0) {
console.log('fizzbuzz')
} else if (i % 3 === 0) {
console.log('fizz')
} else if (i % 5 === 0) {
console.log('buzz')
} else {
console.log(i)
}
}
}
fizzbuzz();
24 changes: 24 additions & 0 deletions js/grade.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
grading = function(testScore) {
switch(true) {
case (testScore >= 85):
grade = "A";
break;
case (testScore >= 75):
grade = "B";
break;
case (testScore >= 65):
grade = "C";
break;
case (testScore >= 50):
grade = "D";
break;
case (testScore < 50):
grade = "F";
break;
default:
return('Not a number');
}
return(grade)
}

console.log(grading(86));
39 changes: 39 additions & 0 deletions js/phonebook.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
// Use a for...in loop to examine the phoneBook Object below and print out the names of all the people who share the phone number "333-333-3333".

var phoneBook = {
"Abe": "111-111-1111",
"Bob": "222-222-2222",
"Cam": "333-333-3333",
"Dan": "444-444-4444",
"Ern": "555-555-5555",
"Fry": "111-111-1111",
"Gil": "222-222-2222",
"Hal": "333-333-3333",
"Ike": "444-444-4444",
"Jim": "555-555-5555",
"Kip": "111-111-1111",
"Liv": "222-222-2222",
"Mia": "333-333-3333",
"Nik": "444-444-4444",
"Oli": "555-555-5555",
"Pam": "111-111-1111",
"Qiq": "222-222-2222",
"Rob": "333-333-3333",
"Stu": "444-444-4444",
"Tad": "555-555-5555",
"Uwe": "111-111-1111",
"Val": "222-222-2222",
"Wil": "333-333-3333",
"Xiu": "444-444-4444",
"Yam": "555-555-5555",
"Zed": "111-111-1111"
};

var outcome = []
for (var name in phoneBook) {
if(phoneBook[name] === '333-333-3333'){
outcome.push(name)
}
}

console.log(outcome)
16 changes: 16 additions & 0 deletions js/reverse.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@


reverse = function(input) {
var reverseResult = []
var reverseString = ""
for (var i = 0; i < input.length; i++) {
reverseResult.unshift(input[i])
}
for(var j = 0 ; j < reverseResult.length ; j++) {
reverseString += reverseResult[j]
}
return reverseString
}

inputString = 'building'
console.log(reverse(inputString));