<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="http://wiki.billyrondon.com/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://wiki.billyrondon.com/feed.php">
        <title>WIKI de apuntes de Billy Rondón - informatica:lenguajes_de_programacion:javascript</title>
        <description></description>
        <link>http://wiki.billyrondon.com/</link>
        <image rdf:resource="http://wiki.billyrondon.com/lib/exe/fetch.php/wiki:dokuwiki.svg" />
       <dc:date>2026-07-21T04:36:03+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:comprobar_imagen_cargada?rev=1744078740&amp;do=diff"/>
                <rdf:li rdf:resource="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:javascript_regex?rev=1744955014&amp;do=diff"/>
                <rdf:li rdf:resource="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:start?rev=1780800513&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://wiki.billyrondon.com/lib/exe/fetch.php/wiki:dokuwiki.svg">
        <title>WIKI de apuntes de Billy Rondón</title>
        <link>http://wiki.billyrondon.com/</link>
        <url>http://wiki.billyrondon.com/lib/exe/fetch.php/wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:comprobar_imagen_cargada?rev=1744078740&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-04-08T02:19:00+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>comprobar_imagen_cargada</title>
        <link>http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:comprobar_imagen_cargada?rev=1744078740&amp;do=diff</link>
        <description>Comprobar si la imagen existe

puesto en un return:



var image = new Image();

image.onload = function() {
    // image exists and is loaded
    document.body.appendChild(image);
}
image.onerror = function() {
    // image did not load

    var err = new Image();
    err.src = &#039;/error.png&#039;;

    document.body.appendChild(err);
}

image.src = &quot;../imgs/6.jpg&quot;;</description>
    </item>
    <item rdf:about="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:javascript_regex?rev=1744955014&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-04-18T05:43:34+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>javascript_regex</title>
        <link>http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:javascript_regex?rev=1744955014&amp;do=diff</link>
        <description>JavaScript RegEx

&lt;https://regex101.com/r/dI9Jbh/1&gt;

&lt;https://stackoverflow.com/questions/20454788/regular-expression-which-will-match-if-there-is-no-repetition&gt;

Limpiar Caracteres


const removeAccents = (str) =&gt; {
  return str.normalize(&quot;NFD&quot;).replace(/[\u0300-\u036f]/g, &quot;&quot;);
} 

removeAccents(&#039;La uña se me rompió después de beber cachaça&#039;);
// &quot;La una se me rompio despues de beber cachaca&quot;</description>
    </item>
    <item rdf:about="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:start?rev=1780800513&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-06-07T02:48:33+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>start</title>
        <link>http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:start?rev=1780800513&amp;do=diff</link>
        <description>Javascript

Mostrar las diferencias en javascript ES6/ES7/ES8/ES9 FIXME

Función

Aunque he programado durante años en javascript, siempre me llamó la atención lo flexible que es para declarar la función, he hecho estos apuntes para mostrar como ordeno lo aprendido de esta diversidad en su uso y que a mí me confundía a veces.</description>
    </item>
</rdf:RDF>
