IT2805/Exercise 8/income-greater-than-500k.html

14 lines
277 B
HTML
Raw Normal View History

2020-10-27 02:30:35 +01:00
<!DOCTYPE html>
<html>
<head>
<title>Income greather than 500 000</title>
<meta charset="UTF-8">
<script src="taxForms.js"></script>
</head>
<body>
<script>
console.log(taxForms.filter(form => form.income > 500000));
</script>
</body>
</html>