Skip to Content

dec

Decrements the given number by 1. Useful for counters and mathematical operations.

Import

import { dec } from '@fullstacksjs/toolbox';

Signature

function dec(n: number): number {}

Examples

dec(3) // 2 dec(5) // 4
Last updated on