This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-12-06
Channels
- # adventofcode (71)
- # aleph (1)
- # announcements (6)
- # aws (1)
- # babashka (27)
- # beginners (60)
- # biff (7)
- # calva (3)
- # clj-kondo (3)
- # clj-yaml (1)
- # clojure (60)
- # clojure-europe (43)
- # clojure-nl (3)
- # clojure-norway (75)
- # clojurescript (16)
- # code-reviews (7)
- # css (4)
- # cursive (47)
- # datascript (4)
- # events (5)
- # fulcro (37)
- # gratitude (5)
- # hyperfiddle (4)
- # introduce-yourself (4)
- # joyride (23)
- # juxt (4)
- # malli (4)
- # membrane (64)
- # nbb (8)
- # off-topic (12)
- # other-languages (6)
- # pathom (6)
- # polylith (9)
- # random (3)
- # rdf (66)
- # reitit (3)
- # releases (2)
- # shadow-cljs (18)
- # tree-sitter (10)
Is there a blog post or something on why clj maps print this hairy in js/console.log?
(def m {:foo 10})
(js/console.log m)
;; {
;; G: null,
;; J: 1,
;; B: [
;; {
;; Vb: null,
;; name: 'foo',
;; ga: 'foo',
;; Od: null,
;; F: 2153775105,
;; N: 4096
;; },
;; 10
;; ],
;; I: null,
;; F: 16647951,
;; N: 139268
;; }
(str m)
"{:foo 10}"
basically I figured out when I say console.log I first call str