<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: NesNes</title>
    <description>The latest articles on DEV Community by NesNes (@nessi_k).</description>
    <link>https://dev.to/nessi_k</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F234325%2F822d2a92-a837-4d99-a5f3-df5b70f16336.png</url>
      <title>DEV Community: NesNes</title>
      <link>https://dev.to/nessi_k</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nessi_k"/>
    <language>en</language>
    <item>
      <title>Babel (transcompiler)</title>
      <dc:creator>NesNes</dc:creator>
      <pubDate>Thu, 13 Oct 2022 18:27:51 +0000</pubDate>
      <link>https://dev.to/nessi_k/babel-transcompiler-53l5</link>
      <guid>https://dev.to/nessi_k/babel-transcompiler-53l5</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;The transpiler Babel currently has the best coverage in terms of new language features. You can use it for all your real world programming needs without a problem.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://en.owl.institute/my-account/my-courses/363602/947713/appendix-a-language-versions-and-transpilers-from-js-to-js#toc_ref_24.3"&gt;https://en.owl.institute/my-account/my-courses/363602/947713/appendix-a-language-versions-and-transpilers-from-js-to-js#toc_ref_24.3&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Babel is a free and open-source JavaScript transcompiler that is mainly used to convert ECMAScript 2015+ (ES6+) code into backwards-compatible JavaScript code that can be run by older JavaScript engines. It allows web developers to take advantage of the newest features of the language.[4]&lt;/p&gt;

&lt;p&gt;Developers can use new JavaScript language features by using Babel to convert their source code into versions of JavaScript that a Web browser can process.[5] Babel is used to compile TypeScript into JavaScript.[6] The core version of Babel was downloaded 5 million times a month in 2016, and this increased to 16 million times a week in 2019.[7][8]&lt;/p&gt;

&lt;p&gt;Babel plugins transform syntax that is not widely supported into a backward-compatible version. For example, arrow functions, which are specified in ES6, are converted into regular function declarations.[9] Non-standard JavaScript syntax such as JSX can also be transformed.[10][11]&lt;/p&gt;

&lt;p&gt;Babel can automatically inject polyfills provided by core-js[12] for support features that are missing entirely from JavaScript environments. For example, static methods such as Array.from and built-ins such as Promise are available only in ES6 and above, but they can be used in older environments if core-js is used.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://en.wikipedia.org/wiki/Babel_(transcompiler)"&gt;https://en.wikipedia.org/wiki/Babel_(transcompiler)&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://babeljs.io/"&gt;https://babeljs.io/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>beginners</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
    <item>
      <title>JS Arithmetic Operators</title>
      <dc:creator>NesNes</dc:creator>
      <pubDate>Thu, 13 Oct 2022 18:20:00 +0000</pubDate>
      <link>https://dev.to/nessi_k/js-arithmetic-operators-17k8</link>
      <guid>https://dev.to/nessi_k/js-arithmetic-operators-17k8</guid>
      <description>&lt;p&gt;JavaScript Arithmetic Operators&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.w3schools.com/js/js_arithmetic.asp"&gt;https://www.w3schools.com/js/js_arithmetic.asp&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://en.owl.institute/my-account/my-courses/363602/947713/operators-data-types-and-other-priorities-javascript-as-a-pocket-calculator-arithmetic-operators#toc_ref_3.2"&gt;https://en.owl.institute/my-account/my-courses/363602/947713/operators-data-types-and-other-priorities-javascript-as-a-pocket-calculator-arithmetic-operators#toc_ref_3.2&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://en.owl.institute/my-account/my-courses/363602/947713/type-conversion-and-numbers-which-aren-t-numbers#toc_ref_7.1"&gt;https://en.owl.institute/my-account/my-courses/363602/947713/type-conversion-and-numbers-which-aren-t-numbers#toc_ref_7.1&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>programming</category>
      <category>beginners</category>
    </item>
    <item>
      <title>API, Array-API</title>
      <dc:creator>NesNes</dc:creator>
      <pubDate>Thu, 13 Oct 2022 18:11:20 +0000</pubDate>
      <link>https://dev.to/nessi_k/api-array-api-5g8h</link>
      <guid>https://dev.to/nessi_k/api-array-api-5g8h</guid>
      <description>&lt;p&gt;&lt;a href="https://en.owl.institute/my-account/my-courses/363602/947713/one-for-all-and-all-for-one-arrays-keeping-things-neat-and-tidy-using-sort#toc_ref_15.7"&gt;https://en.owl.institute/my-account/my-courses/363602/947713/one-for-all-and-all-for-one-arrays-keeping-things-neat-and-tidy-using-sort#toc_ref_15.7&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array?retiredLocale=de"&gt;https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array?retiredLocale=de&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.w3schools.com/jsref/jsref_obj_array.asp"&gt;https://www.w3schools.com/jsref/jsref_obj_array.asp&lt;/a&gt;&lt;/p&gt;

</description>
      <category>api</category>
      <category>javascript</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
    <item>
      <title>API, String-API</title>
      <dc:creator>NesNes</dc:creator>
      <pubDate>Thu, 13 Oct 2022 18:00:40 +0000</pubDate>
      <link>https://dev.to/nessi_k/api-string-api-1ln5</link>
      <guid>https://dev.to/nessi_k/api-string-api-1ln5</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;(...)the JS String API provides you with a few functions(...)&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://en.owl.institute/my-account/my-courses/363602/947713/a-veritable-string-potpourri#toc_ref_12"&gt;https://en.owl.institute/my-account/my-courses/363602/947713/a-veritable-string-potpourri#toc_ref_12&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Strings are useful for holding data that can be represented in text form. Some of the most-used operations on strings are to check their length, to build and concatenate them using the + and += string operators, checking for the existence or location of substrings with the indexOf() method, or extracting substrings with the substring() method.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String?retiredLocale=de"&gt;https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String?retiredLocale=de&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://developer.mozilla.org/en-US/docs/Learn/JavaScript/First_steps/Useful_string_methods"&gt;https://developer.mozilla.org/en-US/docs/Learn/JavaScript/First_steps/Useful_string_methods&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;String-API functions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;charAt&lt;/li&gt;
&lt;li&gt;includes&lt;/li&gt;
&lt;li&gt;startsWith&lt;/li&gt;
&lt;li&gt;endsWith
-indexOf&lt;/li&gt;
&lt;li&gt;lastIndexOf&lt;/li&gt;
&lt;li&gt;repeat&lt;/li&gt;
&lt;li&gt;substr &lt;/li&gt;
&lt;li&gt;toLowerCase&lt;/li&gt;
&lt;li&gt;trim&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://en.owl.institute/my-account/my-courses/363602/947713/a-veritable-string-potpourri-reference#toc_ref_12.7"&gt;https://en.owl.institute/my-account/my-courses/363602/947713/a-veritable-string-potpourri-reference#toc_ref_12.7&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>api</category>
      <category>programming</category>
    </item>
    <item>
      <title>API, Math-API</title>
      <dc:creator>NesNes</dc:creator>
      <pubDate>Thu, 13 Oct 2022 17:50:19 +0000</pubDate>
      <link>https://dev.to/nessi_k/api-math-api-5399</link>
      <guid>https://dev.to/nessi_k/api-math-api-5399</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;JS developers will often also refer to this object as the Math API. You can think of an API (application programming interface) as a human-machine interface which allows a programmer to access the functionality essential for developing software. Depending on the given situation, this functionality can involve definitions, protocols, etc. In JS, an API generally refers to a set of functions which all relate to a specific topic. For example, the Math API allows you to access all the mathematical functionality available in JS.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://en.owl.institute/my-account/my-courses/363602/947713/math-because-the-whole-is-greater-than-the-sum-of-its-parts#toc_ref_8.1"&gt;https://en.owl.institute/my-account/my-courses/363602/947713/math-because-the-whole-is-greater-than-the-sum-of-its-parts#toc_ref_8.1&lt;/a&gt;&lt;/p&gt;

</description>
      <category>api</category>
      <category>javascript</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
    <item>
      <title>"Not a number is a number."</title>
      <dc:creator>NesNes</dc:creator>
      <pubDate>Sat, 08 Oct 2022 10:36:44 +0000</pubDate>
      <link>https://dev.to/nessi_k/not-a-number-is-a-number-kaj</link>
      <guid>https://dev.to/nessi_k/not-a-number-is-a-number-kaj</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;In mathematics, zero divided by zero is undefined and is therefore represented by NaN in computing systems. The square root of a negative number is not a real number, and is therefore also represented by NaN in compliant computing systems. NaNs may also be used to represent missing values in computations.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Source: &lt;a href="https://en.wikipedia.org/wiki/NaN"&gt;https://en.wikipedia.org/wiki/NaN&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
    <item>
      <title>Why is the data type of "10" / "Hallo" a number?</title>
      <dc:creator>NesNes</dc:creator>
      <pubDate>Sat, 08 Oct 2022 10:23:09 +0000</pubDate>
      <link>https://dev.to/nessi_k/why-is-the-data-type-of-10-hallo-a-number-3k3j</link>
      <guid>https://dev.to/nessi_k/why-is-the-data-type-of-10-hallo-a-number-3k3j</guid>
      <description></description>
      <category>javascript</category>
      <category>beginners</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
    <item>
      <title>Markdown Course on Scrimba</title>
      <dc:creator>NesNes</dc:creator>
      <pubDate>Fri, 07 Oct 2022 18:51:24 +0000</pubDate>
      <link>https://dev.to/nessi_k/markdown-course-on-scrimba-4283</link>
      <guid>https://dev.to/nessi_k/markdown-course-on-scrimba-4283</guid>
      <description>&lt;p&gt;I am doing the Markdown course on Scrimba right now. &lt;/p&gt;

&lt;p&gt;Markdown allows us to write HTML in a quick and fluid way. &lt;br&gt;
We use this on the regular for our code reviews, comment sections and README files again and again.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>tutorial</category>
      <category>markdown</category>
      <category>visualstudiocode</category>
    </item>
  </channel>
</rss>
