Skip to content

Instantly share code, notes, and snippets.

View yenisbel's full-sized avatar

yenisbel yenisbel

View GitHub Profile
[{
"columnName": "Rewards",
"items": [
"Reward 1",
"Reward 2",
"Reward 3"
]
}, {
"columnName": "Category 1",
"items": [
// Execerses 1
function lesserNum(num1, num2) {
if (num1 < num2) return num1;
return num2
}
console.log(lesserNum(9, 5))
console.log(lesserNum(2, 3))
@yenisbel
yenisbel / self-assessment-1.js
Created June 21, 2019 03:06
Yenisbel Valle
/ 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
};
}
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: