Skip to content

Instantly share code, notes, and snippets.

@misterbailey
misterbailey / array_recursion.js
Created May 7, 2018 22:04
Array Recursion Task
// 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
@misterbailey
misterbailey / oscillate.js
Created February 6, 2021 09:07
Javascript oscillation function
/**
* 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);