Why do these ways of referencing columns give different results?
I'm struggling to understand how JSL handles column references and keep running into bugs in my scripts for that reason.Why are the following expressions giving different results?What is the best way of dynamically passing column references to functions? dt = New Table("test",
New Column("abc"),
New Column("def")
);
collist = {:abc, :def};
col = AsName("abc");
colname = "abc";
Show(Contains(col
...