1👍
As per the official docs it’s not mentioned. Here
You can check this using-
$ === jQuery
OR
window.onload = function() {
if (window.jQuery) {
// jQuery is loaded
alert("Yeah!");
} else {
// jQuery is not loaded
alert("Doesn't Work");
}
}
Source:stackexchange.com