You are given an array of numbers. Write a JavaScript code/function that prints the elements at odd positions from the array, doubled and in reverse order. The input comes as array of number elements.
Examples:
Input:
[10, 15, 20, 25]
Output:
50 30
Input:
[3, 0, 10, 4, 7, 3]
Output:
6 8 0
The output is printed on the console on a single line, separated by space.