{{ i }}

Time Conversion

Convert the decimal time to hours and minutes.

{{ s1_wholeHours }} Whole Hour(s)
? Minutes

Tap to fill ({{ s1_fraction * 60 }} mins)

{{ s1_selectedSlices.size * 5 }}m

Flight Time

Find the elapsed time between departure and arrival.

Depart
{{ formatTime(s2_startMins) }}
Arrive
{{ formatTime(s2_endMins) }}

Slide to arrive

Clock Shows
{{ formatTime(s2_startMins + s2_sliderValue) }}
Duration
{{ Math.floor(s2_sliderValue / 60) }}h {{ s2_sliderValue % 60 }}m

Checkout

Pay the exact final amount after the coupon.

Toy Robot ${{ s3_cost.toFixed(2) }}
Coupon -${{ s3_discount.toFixed(2) }}
Total
Wallet
${{ bill }}
{{ coin < 1 ? (coin*100).toFixed(0) + '¢' : '$'+coin }}
Drag to Pay
${{ s3_currentPaid.toFixed(2) }}
{{ item.type === 'bill' ? '$'+item.value : (item.value < 1 ? (item.value*100).toFixed(0)+'¢' : '$'+item.value) }}
Paid: ${{ s3_currentPaid.toFixed(2) }}
🏆

Awesome Job!

You mastered time and money calculations!

{{ dragState.type === 'bill' ? '$'+dragState.value : (dragState.value < 1 ? (dragState.value*100).toFixed(0)+'¢' : '$'+dragState.value) }}