Skip to content

Math Abs

Serkan Algur edited this page Nov 22, 2020 · 1 revision

Abs - Absolute value

func Abs(n float64) float64

Original : https://www.php.net/manual/en/function.abs.php

Returns the absolute value of the number.

Usage

package main

import (
	"fmt"
	"github.com/serkanalgur/phpfuncs"
)

func main() {
	fmt.Println(phpfuncs.Abs(2))
}

// Expected Result is '2'
Clone this wiki locally