-2

I would like to make a bookmarklet that pop up and takes a number then multiply it by 3.9.

Thank you so much.

1 Answers1

0

Create a new bookmark with the URL set to:

javascript:number = prompt("Please enter a number: "); alert("The product of your number and 3.9 is: " + number * 3.9);

jmcker
  • 387
  • 4
  • 18