Skip to main content
Module

x/denops_std/function/mod.ts>log10

📚 Standard module for denops.vim
Go to Latest
function log10
import { log10 } from "https://deno.land/x/denops_std@v6.4.0/function/mod.ts";

Return the logarithm of Float {expr} to base 10 as a Float. {expr} must evaluate to a Float or a Number. Returns 0.0 if {expr} is not a Float or a Number. Examples:

:echo log10(1000)

    3.0

:echo log10(0.01)

    -2.0

Can also be used as a method:

Compute()->log10()

Parameters

denops: Denops
expr: unknown

Returns

Promise<number>