` ); const blob = new Blob([htmlContent], { type: 'text/html' }); const url = URL.createObjectURL(blob); const a = document.createElement('a'); a.href = url; a.download = 'code_editor.html'; document.body.appendChild(a); a.click(); document.body.removeChild(a); URL.revokeObjectURL(url); } function shareCode() { const code = document.getElementById('codeInput').value; const encodedCode = btoa(encodeURIComponent(code)); window.location.hash = encodedCode; window.prompt("Copy the URL to share.\nBe warned! Very long URLs don't share wicked well, sometimes.", window.location.href); } function clearEverything() { if (!confirm('Are you sure you want to reset the playground?')) { return; } else { window.location.hash = ''; window.location.reload(); } } function loadCodeFromHash() { const hash = window.location.hash.substring(1); if (hash) { try { const decodedCode = decodeURIComponent(atob(hash)); document.getElementById('codeInput').value = decodedCode; } catch (error) { console.error('Failed to decode the URL hash:', error); } } } function help() { const helpText = ` Welcome to the JavaScript Playground! Here are some tips to get you started: 1. Enter your JavaScript code in the textarea. 2. Click the "Run Code" button to execute your code. 3. The console output will be displayed below the textarea. 4. Click the "Clear" button to reset the playground. 5. Click the "Download" button to save your code and editor as an HTML file. 6. Click the "Share" button to generate a URL to share your code with others. 7. You can also press "Cmd + Enter" to run your code. 8. There's an empty div above the buttons with the id "playground" 9. You can mount stuff to it using the "mount" function, for more info run "mountHelp()" 10. You can use the "clear()" function to clear the content's of the console. Go nuts! Share scrappy fiddles! `; console.log(helpText); } function clear() { document.getElementById('console').innerHTML = ''; } function mountHelp() { console.log(` The mount function is used to mount stuff to the playground div. It takes a function as an argument, which in turn receives the playground div as an argument. Before mounting, it clears the playground div. Here's an example of how to use the mount function: mount(playground => { const h1 = document.createElement('h1'); h1.textContent = 'Hell is empty and all the devils are here.'; playground.appendChild(h1); }); This will add an h1 element to the playground div. `); } function mount(mountFunction) { const playground = document.getElementById('playground'); if (!playground) { console.error("Couldn't find a div with the id 'playground'! You may need to reload the page."); return; } if (playground.innerHTML.trim() !== "") { playground.innerHTML = ""; } mountFunction(playground); } document.getElementById('codeInput').addEventListener('keydown', function(event) { if (event.metaKey && event.key === 'Enter') { event.preventDefault(); evaluateCode(); } }); window.onload = loadCodeFromHash; && pattern.length === 1) return text.length === 0; // If next char is '*', match zero or more occurrences of prev char if (pattern[1] === '*') return matchStar(pattern[0], pattern.slice(2), text); // Match . or literal character if (text.length !== 0 && (pattern[0] === '.' || pattern[0] === text[0])) { return matchHere(pattern.slice(1), text.slice(1)); } return false; }; const matchStar = (prevChar, pattern, text) => { // Try matching zero occurrences first if (matchHere(pattern, text)) return true; // Then, match one or more occurrences of prevChar while (text.length > 0 && (text[0] === prevChar || prevChar === '.')) { text = text.slice(1); if (matchHere(pattern, text)) return true; } return false; }; const match = (pattern, text) => { // Handle ^ anchor at the beginning if (pattern[0] === '^') { return matchHere(pattern.slice(1), text); } // Otherwise, check the entire string for (let i = 0; i <= text.length; i++) { if (matchHere(pattern, text.slice(i))) return true; } return false; }; const assertEqual = (actual, expected, testName) => console.log(actual === expected ? `Passed: ${testName}` : `Failed: ${testName}. Expected ${expected} but got ${actual}`); assertEqual(match("ab*c", "ac"), true, "Star match 'ab*c' vs 'ac' (zero occurrences)"); assertEqual(match("ab*c", "abbbc"), true, "Star match 'ab*c' vs 'abbbc' (multiple occurrences)"); assertEqual(match("^ab.*c$", "abc"), true, "Complex match '^ab.*c
vs 'abc'"); assertEqual(match("^ab.*c$", "abcd"), false, "Complex mismatch '^ab.*c
vs 'abcd'");