Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 233 Bytes

File metadata and controls

9 lines (5 loc) · 233 Bytes

[[Additional Algorithms]]

Algorithm to find the decibel of a sound, provided its intensity.

const dBScale=(intensity)=>10*/Math.log10(intensity*/Math.pow(10,12))

/ in this case is used to escape the asterisks.

#algorithms