JanetDocsSourcePlaygroundI'm feeling luckyCommunityGitHub sign in

number?

core-api


    function
    boot.janet on line 101, column 1

    (number? x)

    Check if x is a number.


1 exampleSign in to add an example
Loading...
(map number? [nil   true  42   :a    "a"   []    {}    (fn []) ])
# =>        @[false false true false false false false false   ]
cellularmitosisPlayground