How to use the filter function from mathjs

Find comprehensive JavaScript mathjs.filter code examples handpicked from public code repositorys.

73
74
75
76
77
78
// aproximação para cima
console.log('aproximação para cima:', math.ceil([1.2, 2.5, 3.9]));
// expressão
console.log('expressão:', math.evaluate('(2 + 3) * 2'));
// filtro
console.log('filtro:', math.filter([1, 2, 2, 3], new RegExp(2)));
fork icon0
star icon0
watch icon0

+ 2 other calls in file