An instance of SCEditor. See the SCEditor API page for a full list of methods.
A JavaScript string primitive (not String object).
typeof value === 'string' // Will be true
A JavaScript function.
typeof value === 'function' // Will be true
A JS boolean primitive (not a Boolean object).
typeof value === 'boolean' // Will be true
A JS number primitive (not a Number object).
typeof value === 'number' // Will be true
A JS number primitive (not a Number object) that is an integer (…, -2, -1, 0, 1, 2, …).
typeof value === 'number' // Will be true
A JavaScript array. For example:
var empty = [];
var array = ['one', 'two', 'three'];
See the MDN array page for more informatiom.
A DOM node object. For more information see the MDN node page.
A DOM HTMLElement object. For more information see the MDN element page.
A DOM range object. For more information see the MDN range page.
A jQuery object. For more information see the jQuery docs.