<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel>
        <title>Ukoeka</title>
        <link>https://paragraph.com/@ukoeka</link>
        <description>I do everything crypto,
I do front end engineering too</description>
        <lastBuildDate>Wed, 06 May 2026 22:04:10 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <image>
            <title>Ukoeka</title>
            <url>https://storage.googleapis.com/papyrus_images/f3b4b7e425da8b3a25f3b06e31b8793d0ec9880d180ddcd5c170fd28656f8117.jpg</url>
            <link>https://paragraph.com/@ukoeka</link>
        </image>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[var, let and constant in Js]]></title>
            <link>https://paragraph.com/@ukoeka/var-let-and-constant-in-js</link>
            <guid>OjzEEc5G9XVlm1oIuHxy</guid>
            <pubDate>Wed, 10 Jan 2024 09:43:25 GMT</pubDate>
            <description><![CDATA[JS simply means Javascript by the way var, let, and const are all keywords used for declaring variables in JavaScript, but they differ in terms of scope, reassignment, and immutability. var are function-scoped or globally-scoped, which means they are accessible within the function they are declared in, or globally if declared outside a function. let allows for block-scoped variable declaration. Variables declared with let are limited in scope to the block, statement, or expression in which th...]]></description>
            <content:encoded><![CDATA[<p>JS simply means Javascript by the way</p><p><code>var</code>, <code>let</code>, and <code>const</code> are all keywords used for declaring variables in JavaScript, but they differ in terms of scope, reassignment, and immutability.</p><p><code>var</code> are function-scoped or globally-scoped, which means they are accessible within the function they are declared in, or globally if declared outside a function.</p><p><code>let</code> allows for block-scoped variable declaration. Variables declared with <code>let</code> are limited in scope to the block, statement, or expression in which they are used. <code>let</code> also allows reassignment but not redeclaration within the same scope.</p><p><code>const</code> is used to declare variables that are block-scoped like <code>let</code>, but their values cannot be reassigned once they are initialized. However, it&apos;s important to note that while the value itself cannot be reassigned, for objects and arrays declared with <code>const</code>, their internal properties or elements can still be changed.<br><br>I will drop examples in the next post, drop questions or comments<br>Thanks</p>]]></content:encoded>
            <author>ukoeka@newsletter.paragraph.com (Ukoeka)</author>
        </item>
    </channel>
</rss>