I know $ in as alias for jQuery.
Can someone please enlighten me what three dollars mean in java script? I am seeing both of the following are working.
var stxx = new CIQ.ChartEngine({ container: $$$("#idOfDev") });
var stxx = new CIQ.ChartEngine({ container: $$$(".classAppliedToDev") });
Both of them are selecting the dev to which id or class is applied.
But strangely when I make it single $ instead of three $$$, it would not work.