parseInt Function

Tell us what’s happening:
I know how to use parseInt/ ParseFloat, but don’t understand how to go about this question. Please help

Your code so far


function convertToInteger(str) {
  parseInt("x");
}
var x="james bond";
convertToInteger("x");

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/use-the-parseint-function/

You are currently trying to parse "x" to an integer, but you will have to parse the parameter passed to the function (str) to an integer.

And of course, you will have to return the result from parseInt().

Also note that quoting x makes it a string, not a variable.