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
// Task: Write a function that recursively loops through a multidimensional array and counts the instances of an item | |
// Le data | |
var arr = [ | |
'apples', | |
['apples', 'oranges,', 'bananas', ['apples',]] | |
]; | |
// A quick and dirty nested loop. | |
// Will only work if nesting is one level deep |
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
/** | |
* Ossilate - Make things go back and forth! | |
* TODO: Easings | |
* @param {Number} amplitude The distance from the center of motion to either extreme. | |
* @param {Number} interval The amount of time it takes for one complete cycle of motion in frames. | |
* @param {Number} time The current frame count, ideally a deltaTime value. | |
* @param {String} trigonometricFunction The function to be used to calculate the value. Defaults to 'sin'. | |
*/ | |
oscillate = (amplitude, interval, time, trigonometricFunction = 'sin') => { | |
return amplitude * Math[trigonometricFunction]((Math.PI * 2.0) * time / interval); |
OlderNewer