/* Challenge: 1. Convert this function declaration to a function expression. */
function getTheftAlert(numberOfTransactionsHour) { if (numberOfTransactionsHour > 5) { return `You have made ${numberOfTransactionsHour} transactions in the past hour. We think your card might have been compromised` } }
console.log(getTheftAlert(6))
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
Challenge:
1. Convert this function declaration to a function expression.
*/
function getTheftAlert(numberOfTransactionsHour) {
if (numberOfTransactionsHour >5) {
return`You have made ${numberOfTransactionsHour} transactions
in the past hour. We think your card might have been