second

functionsince v0.0-927 clojure.core/secondEdit
(second coll)

Details:

Returns the second item in coll.

Same as (first (next coll))


See Also:


Source docstring:
Same as (first (next x))
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn second
  [coll]
  (first (next coll)))