Created
April 28, 2021 05:52
-
-
Save nishanthreddy114/eee29460f2c188aab974c65c3ea9882c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let activities = [ | |
['Work', 9], | |
['Eat', 1], | |
['Commute', 2], | |
['Play Game', 1], | |
['Sleep', 7] | |
]; | |
function rotate( parameter ){ | |
var newarr = []; | |
for( var x = 0; x < parameter[0].length; x++ ){ | |
newarr[x] = []; | |
for( var y = 0; y <parameter.length; y++ ){ | |
newarr[x].push( parameter[y][x] ); | |
} | |
} | |
return newarr; | |
} | |
console.log(rotate(activities)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment