Get Not a Number
Examples
Filter
package main
import (
"fmt"
"math"
)
func main() {
not_a_number := math.NaN()
fmt.Println(not_a_number)
}