Skip to content

Commit 99d4bad

Browse files
committed
Pending changes exported from your codespace
1 parent 0edee67 commit 99d4bad

File tree

20 files changed

+98
-5
lines changed

20 files changed

+98
-5
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// Your code here
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
function sum(number1,number2) {
2+
return number1 + number2;
3+
}
4+
5+
// Your code here
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
function calculateArea(length, width) {
2+
return length * width;
3+
}
4+
5+
// Your code below this line:
6+
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// Define the function called "multi" that expects 2 parameters:
2+
3+
4+
// Don't edit anything below this line
5+
let returnValue = multi(7,53812212);
6+
console.log(returnValue);
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
let multi = function(a,b) {
2+
return a*b;
3+
}
4+
// Don't edit anything ABOVE this line
5+
6+
7+
// Your code here
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
function multi(a,b) {
2+
return a * b;
3+
}
4+
5+
// Don't edit anything below this line
6+
console.log(multi(324234,47))
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
let dollarToEuro = function(dollarValue) {
2+
return dollarValue * 0.89;
3+
}
4+
let euroToYen = function(euroValue) {
5+
return euroValue * 124.15;
6+
}
7+
///***** YOUR CODE BELOW ↓ ******///
8+
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// Your code goes here:
2+
3+
4+
5+
///*** Do not edit below this line ***///
6+
console.log(renderPerson('Bob', '05/22/1983', 'green', 23, 'male'));
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
let names = ['John', 'Kenny', 'Tom', "Bob", 'Dilan'];
2+
3+
function sortNames(arr) {
4+
// Your code goes here
5+
6+
}
7+
8+
console.log(sortNames(names));
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// Your code goes here
2+
3+
4+
// Work above this line; do not change code below
5+
let str = "John";
6+
console.log(rapid(str));

0 commit comments

Comments
 (0)