Question: Which choice is a correct use of the parseInt() function in Javascript that parses a string and return an integer?

  1. parseInt("six");
  2. parse_int('6');
  3. parseInt("6");
  4. parseint("6");

Answer: The correct answer of the above question is Option C:parseInt("6");