Option B is the correct JavaScript code snippet to convert the amount of US dollars to Indian Rupees. It defines the necessary function and uses the provided conversion rate to perform the conversion.
The correct JavaScript code snippet to convert the amount of US dollars to Indian Rupees is option B. Here is the explanation:
- Option A is missing the opening and closing curly braces for the function and will result in a syntax error.
- Option B defines the function convertToINR that takes the parameter usdAmount. It then declares a constant variable conversionRate and assigns it a value of 75. This is the current exchange rate between USD and INR mentioned in the question. The function multiplies the usdAmount by the conversionRate and returns the result.
- Option C is incorrect because it uses the prompt function to ask the user for the usdAmount input, and it also calculates the inrAmount and logs it to the console. However, it does not define a function to perform the conversion as required by the question.
- Option D is similar to option B in terms of functionality, but it does not use a parameter for the usdAmount input. It is also missing the opening and closing curly braces for the function, resulting in a syntax error.