Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML

Using validation with form submission

Hello, I am trying to find a way to check for validation that the pilot and co-pilot names should be strings and the fuel level and cargo mass should be numbers. How could I incorporate that to create an alert to notify the user to enter correct inputs here is my work: https://repl.it/@karlylamm1/Launch-CheckList-Form

1 Answer

GΓ‘bor Szalai
GΓ‘bor Szalai
17,881 Points

Hi! You can use the "typeof" operator to check the type of the variables.

console.log(typeof 42); // expected output: "number"

console.log(typeof 'blubber'); // expected output: "string"