There's a similar question here but mine is a little more specific in regarding speicific scripts and that I'm going to use a CDN regardless.
Jsdeliver allows you to combine several script into one.
For example I can add jquery and jquery migrate like this:
https://cdn.jsdelivr.net/g/jquery@1.11.3,jquery.migrate@1.3.0
From a speed standpoint is it better to load widely used scripts separately since it may already be cached even if they are from different domains? Or to combine them on the same cdn domain even if it's certain they won't be cached?
There may not be a definite answer on this...
Google's jQuery is used the most so would it always be smarter to load it from Google even if I'm using a different cdn form my other scripts?
Pagespeed insights tells you to load your scripts together from one url, but to me, it seems possible that this:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/jquery.migrate/1.3.0/jquery-migrate.min.js"></script>
Might still be better than this just because jquery is probably already cached:
<script src="https://cdn.jsdelivr.net/g/jquery@1.11.3,jquery.migrate@1.3.0"></script>