scrimba
Learn Typescript
Learn primitive types
Number Types mini-challenge
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Number Types mini-challenge
AboutCommentsNotes
Number Types mini-challenge
Expand for more info
index.ts
run
preview
console
// Number Types mini-challenge
// Write a function that will only accept numbers and attend to
// all 'any' TypeScript weakness flags.
const reviewTotalDisplay = document.querySelector('#reviews')

const reviews = [
{
name: 'Sheia',
stars: 5,
loyaltyUser: true,
date: '01-04-2021'
},
{
name: 'Andrzej',
stars: 3,
loyaltyUser: false,
date: '28-03-2021'
},
{
name: 'Omar',
stars: 4,
loyaltyUser: true,
date: '27-03-2021'
},
]
Console
/index.html
-5:54