This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{ | |
"columnName": "Rewards", | |
"items": [ | |
"Reward 1", | |
"Reward 2", | |
"Reward 3" | |
] | |
}, { | |
"columnName": "Category 1", | |
"items": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Execerses 1 | |
function lesserNum(num1, num2) { | |
if (num1 < num2) return num1; | |
return num2 | |
} | |
console.log(lesserNum(9, 5)) | |
console.log(lesserNum(2, 3)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/ Execerses 1 | |
function convertTo(units, num) { | |
//Do not worry about formatting your output to round to the nearest 2nd decimal number. | |
if (units === 'cm'){ | |
return num * 2.54 | |
}else if(units === 'in'){ | |
return num / 2.54 | |
}; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
accounting: | |
title: 'Accounting' | |
description: 'Processing and communication of financial information' | |
advertising: | |
title: 'Advertising' | |
description: 'Marketing communication used to promote' | |
analytics: | |
title: 'Analytics' | |
description: 'Data or statistics to make intelligent marketing and business decisions' | |
backend: |