TZinovieva

Gramophone

Jan 19th, 2023
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function gramophone(band, album, song) {
  2.     let timeRotation = (album.length * band.length) * song.length / 2;
  3.     let rotationCount = timeRotation / 2.5;
  4.     console.log(`The plate was rotated ${Math.ceil(rotationCount)} times.`);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment