Skip to content

Instantly share code, notes, and snippets.

View abduwaly's full-sized avatar
👨‍💻
All my life is about CRUD & Naming

Abduwaly abduwaly

👨‍💻
All my life is about CRUD & Naming
View GitHub Profile
@techieshark
techieshark / copy-into-browser.js
Last active November 9, 2018 12:14
jquery-and-lodash-in-console
// For quickly trying things out in the browser, jQuery and Lo-Dash (like Underscore.js) are great.
// Read the code below (never copy & paste code you don't trust),
// then you can copy & paste it into the browser console to load jQuery & lodash.
(function () {
var jq = document.createElement('script');
jq.src = 'https://code.jquery.com/jquery-2.1.4.js';