@aureooms/js-complex Complex numbers for JavaScript. See docs. Parent is @aureooms/js-algorithms. import { CC } from '@aureooms/js-complex' ; const a = CC.from( '2+3j' ) ; const b = CC.from( '1-7j' ) ; a.mul( b ).toString( ) ; // '23-11j'