JSFiddle - React, Tailwind, and code Playground

by jonathanmh

JavaScript

alter = prompt('Wie alt sind Sie?');
if(alter < 18) {
	alert('Ha! Du bist minderjährig!');
}

else if(alter >= 18){
	alert('Wow! Ganz schön alt...');
}

else {
	alert('Wie bitte? Eingabe ungültig.');
}