Upload your JavaScript file and get a shareable download link
// Simple JavaScript function
function greet(name) {
return `Hello, ${name}!`;
}
// Event listener example
document.addEventListener('DOMContentLoaded', function() {
console.log('Document loaded');
});
// Fetch API example
async function fetchData(url) {
try {
const response = await fetch(url);
return await response.json();
} catch (error) {
console.error('Error:', error);
}
}