<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[QP School - JavaScript Tutorials]]></title>
		<link>https://qomplainerzschool.lima-city.de/</link>
		<description><![CDATA[QP School - https://qomplainerzschool.lima-city.de]]></description>
		<pubDate>Wed, 15 Apr 2026 01:11:39 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Everything you need to know about JavaScript]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5055</link>
			<pubDate>Tue, 25 Jul 2023 11:51:28 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5055</guid>
			<description><![CDATA[JavaScript is a high-level, dynamic, and versatile programming language primarily used for web development. It was created by Brendan Eich while he was working at Netscape and first appeared in 1995. Since then, it has become one of the most widely used programming languages, not only for web development but also for server-side development (Node.js), desktop applications, game development, and more. Here's everything you need to know about JavaScript:<br />
<br />
Client-Side Scripting: JavaScript is primarily used as a client-side scripting language, meaning it runs on the user's web browser and allows developers to create interactive and dynamic web pages. It can manipulate HTML and CSS, handle user interactions, and respond to events like button clicks and form submissions.<br />
<br />
Syntax and Structure: JavaScript syntax is similar to other programming languages like C, Java, and C++, making it relatively easy for developers with programming experience to learn. It uses variables, functions, loops, conditionals, and other familiar programming constructs.<br />
<br />
Data Types: JavaScript is a dynamically-typed language, meaning you don't need to declare the data type of a variable explicitly. Common data types include numbers, strings, booleans, objects, arrays, and functions.<br />
<br />
Objects and Prototypes: JavaScript is an object-oriented language, and everything in JavaScript is an object, except for primitive data types. It uses prototype-based inheritance, where objects can inherit properties and methods from other objects.<br />
<br />
Functions: Functions are a core concept in JavaScript. They can be defined using the function keyword and can be assigned to variables, passed as arguments to other functions, and returned from functions.<br />
<br />
Event Handling: JavaScript is widely used for event handling in web development. Events like clicks, keypresses, and form submissions can be captured, and corresponding functions can be executed in response.<br />
<br />
Asynchronous Programming: JavaScript supports asynchronous programming through callbacks, promises, and async/await. Asynchronous functions allow non-blocking execution, making it suitable for tasks like fetching data from servers without freezing the user interface.<br />
<br />
DOM Manipulation: The Document Object Model (DOM) is a programming interface for HTML and XML documents. JavaScript allows developers to access, modify, and manipulate the DOM, enabling dynamic changes to web pages after they have loaded.<br />
<br />
Libraries and Frameworks: JavaScript has a rich ecosystem of libraries and frameworks that simplify and expedite web development. Some popular ones include jQuery, React, Angular, Vue.js, and Express.js (for server-side development).<br />
<br />
Cross-Browser Compatibility: JavaScript code runs on various web browsers, but browser implementations may vary. Developers need to consider cross-browser compatibility and test their code on different browsers.<br />
<br />
Security Considerations: Since JavaScript executes on the client-side, security is a crucial aspect. Developers must be mindful of potential security vulnerabilities like Cross-Site Scripting (XSS) and Cross-Site Request Forgery (CSRF) and implement security measures to protect users and their data.<br />
<br />
ES6 and Beyond: ECMAScript 6 (ES6) is a major update to the JavaScript language, introducing new syntax, features, and enhancements. Many modern JavaScript projects use ES6 or later versions, taking advantage of features like arrow functions, classes, modules, and more.<br />
<br />
JavaScript's versatility and wide adoption have made it an essential skill for web developers. As the language continues to evolve, it remains a fundamental tool for building interactive and responsive web applications.]]></description>
			<content:encoded><![CDATA[JavaScript is a high-level, dynamic, and versatile programming language primarily used for web development. It was created by Brendan Eich while he was working at Netscape and first appeared in 1995. Since then, it has become one of the most widely used programming languages, not only for web development but also for server-side development (Node.js), desktop applications, game development, and more. Here's everything you need to know about JavaScript:<br />
<br />
Client-Side Scripting: JavaScript is primarily used as a client-side scripting language, meaning it runs on the user's web browser and allows developers to create interactive and dynamic web pages. It can manipulate HTML and CSS, handle user interactions, and respond to events like button clicks and form submissions.<br />
<br />
Syntax and Structure: JavaScript syntax is similar to other programming languages like C, Java, and C++, making it relatively easy for developers with programming experience to learn. It uses variables, functions, loops, conditionals, and other familiar programming constructs.<br />
<br />
Data Types: JavaScript is a dynamically-typed language, meaning you don't need to declare the data type of a variable explicitly. Common data types include numbers, strings, booleans, objects, arrays, and functions.<br />
<br />
Objects and Prototypes: JavaScript is an object-oriented language, and everything in JavaScript is an object, except for primitive data types. It uses prototype-based inheritance, where objects can inherit properties and methods from other objects.<br />
<br />
Functions: Functions are a core concept in JavaScript. They can be defined using the function keyword and can be assigned to variables, passed as arguments to other functions, and returned from functions.<br />
<br />
Event Handling: JavaScript is widely used for event handling in web development. Events like clicks, keypresses, and form submissions can be captured, and corresponding functions can be executed in response.<br />
<br />
Asynchronous Programming: JavaScript supports asynchronous programming through callbacks, promises, and async/await. Asynchronous functions allow non-blocking execution, making it suitable for tasks like fetching data from servers without freezing the user interface.<br />
<br />
DOM Manipulation: The Document Object Model (DOM) is a programming interface for HTML and XML documents. JavaScript allows developers to access, modify, and manipulate the DOM, enabling dynamic changes to web pages after they have loaded.<br />
<br />
Libraries and Frameworks: JavaScript has a rich ecosystem of libraries and frameworks that simplify and expedite web development. Some popular ones include jQuery, React, Angular, Vue.js, and Express.js (for server-side development).<br />
<br />
Cross-Browser Compatibility: JavaScript code runs on various web browsers, but browser implementations may vary. Developers need to consider cross-browser compatibility and test their code on different browsers.<br />
<br />
Security Considerations: Since JavaScript executes on the client-side, security is a crucial aspect. Developers must be mindful of potential security vulnerabilities like Cross-Site Scripting (XSS) and Cross-Site Request Forgery (CSRF) and implement security measures to protect users and their data.<br />
<br />
ES6 and Beyond: ECMAScript 6 (ES6) is a major update to the JavaScript language, introducing new syntax, features, and enhancements. Many modern JavaScript projects use ES6 or later versions, taking advantage of features like arrow functions, classes, modules, and more.<br />
<br />
JavaScript's versatility and wide adoption have made it an essential skill for web developers. As the language continues to evolve, it remains a fundamental tool for building interactive and responsive web applications.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[JavaScript - Array find() example (returns the value)]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=4123</link>
			<pubDate>Tue, 04 Apr 2023 10:12:03 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=4123</guid>
			<description><![CDATA[The HTML part between the &lt;body&gt;&lt;/body&gt; tags looks like this:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;p&gt;Click "Test" to return the value of the first element in the array that has a value above this number:&lt;/p&gt;<br />
&lt;p&gt;&lt;input type="number" id="ageToCheck" value="18"&gt;&lt;/p&gt;<br />
&lt;button onclick="myFunction()"&gt;Test&lt;/button&gt;<br />
&lt;p id="demo"&gt;&lt;/p&gt;</code></div></div><br />
<br />
The JavaScript part looks like this:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>const ages = [4, 12, 16, 20];<br />
<br />
function checkAge(age)<br />
{<br />
  return age &gt; document.getElementById("ageToCheck").value;<br />
}<br />
<br />
function myFunction()<br />
{<br />
  document.getElementById("demo").innerHTML = ages.find(checkAge);<br />
}</code></div></div>]]></description>
			<content:encoded><![CDATA[The HTML part between the &lt;body&gt;&lt;/body&gt; tags looks like this:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;p&gt;Click "Test" to return the value of the first element in the array that has a value above this number:&lt;/p&gt;<br />
&lt;p&gt;&lt;input type="number" id="ageToCheck" value="18"&gt;&lt;/p&gt;<br />
&lt;button onclick="myFunction()"&gt;Test&lt;/button&gt;<br />
&lt;p id="demo"&gt;&lt;/p&gt;</code></div></div><br />
<br />
The JavaScript part looks like this:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>const ages = [4, 12, 16, 20];<br />
<br />
function checkAge(age)<br />
{<br />
  return age &gt; document.getElementById("ageToCheck").value;<br />
}<br />
<br />
function myFunction()<br />
{<br />
  document.getElementById("demo").innerHTML = ages.find(checkAge);<br />
}</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[JavaScript Array findIndex() examples (returns the index)]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=4122</link>
			<pubDate>Tue, 04 Apr 2023 10:10:16 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=4122</guid>
			<description><![CDATA[The HTML part between the &lt;body&gt;&lt;/body&gt; tags looks like this:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;h2&gt;Example 1&lt;/h2&gt;<br />
&lt;p id="demo"&gt;&lt;/p&gt;<br />
&lt;h2&gt;Example 2&lt;/h2&gt;<br />
&lt;p&gt;Click "Test" to return the index of the first array element that has a value above this number:&lt;/p&gt;<br />
&lt;p&gt;&lt;input type="number" id="toCheck" value="18"&gt;&lt;/p&gt;<br />
&lt;button onclick="myFunction()"&gt;Test&lt;/button&gt;<br />
&lt;p id="demo2"&gt;&lt;/p&gt;</code></div></div><br />
<br />
The JavaScript part looks like this:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>// Example 1<br />
<br />
const ages = [3, 10, 18, 20];<br />
<br />
function checkAge(age)<br />
{<br />
  return age &gt; 18;<br />
}<br />
<br />
document.getElementById("demo").innerHTML = ages.findIndex(checkAge);<br />
<br />
// Example 2<br />
<br />
const numbers = [4, 12, 16, 20];<br />
<br />
function checkValue(x)<br />
{<br />
  return x &gt; document.getElementById("toCheck").value;<br />
}<br />
<br />
function myFunction()<br />
{<br />
  document.getElementById("demo2").innerHTML = numbers.findIndex(checkValue);<br />
}</code></div></div>]]></description>
			<content:encoded><![CDATA[The HTML part between the &lt;body&gt;&lt;/body&gt; tags looks like this:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;h2&gt;Example 1&lt;/h2&gt;<br />
&lt;p id="demo"&gt;&lt;/p&gt;<br />
&lt;h2&gt;Example 2&lt;/h2&gt;<br />
&lt;p&gt;Click "Test" to return the index of the first array element that has a value above this number:&lt;/p&gt;<br />
&lt;p&gt;&lt;input type="number" id="toCheck" value="18"&gt;&lt;/p&gt;<br />
&lt;button onclick="myFunction()"&gt;Test&lt;/button&gt;<br />
&lt;p id="demo2"&gt;&lt;/p&gt;</code></div></div><br />
<br />
The JavaScript part looks like this:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>// Example 1<br />
<br />
const ages = [3, 10, 18, 20];<br />
<br />
function checkAge(age)<br />
{<br />
  return age &gt; 18;<br />
}<br />
<br />
document.getElementById("demo").innerHTML = ages.findIndex(checkAge);<br />
<br />
// Example 2<br />
<br />
const numbers = [4, 12, 16, 20];<br />
<br />
function checkValue(x)<br />
{<br />
  return x &gt; document.getElementById("toCheck").value;<br />
}<br />
<br />
function myFunction()<br />
{<br />
  document.getElementById("demo2").innerHTML = numbers.findIndex(checkValue);<br />
}</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[JavaScript - Additions with values]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=4121</link>
			<pubDate>Tue, 04 Apr 2023 10:05:34 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=4121</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let x = 100 + 50;<br />
<br />
document.getElementById("demo").innerHTML = x;</code></div></div>]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let x = 100 + 50;<br />
<br />
document.getElementById("demo").innerHTML = x;</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[JavaScript - Additions with variables]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=4120</link>
			<pubDate>Tue, 04 Apr 2023 10:05:07 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=4120</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 100;<br />
let b = 50;<br />
let x = a + b;<br />
<br />
document.getElementById("demo").innerHTML = x;</code></div></div>]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 100;<br />
let b = 50;<br />
let x = a + b;<br />
<br />
document.getElementById("demo").innerHTML = x;</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[JavaScript - Additions with expressions]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=4119</link>
			<pubDate>Tue, 04 Apr 2023 10:04:40 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=4119</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 3;<br />
let x = (100 + 50) + a;<br />
<br />
document.getElementById("demo").innerHTML = x;</code></div></div>]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 3;<br />
let x = (100 + 50) + a;<br />
<br />
document.getElementById("demo").innerHTML = x;</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[JavaScript - Subtractions with values]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=4118</link>
			<pubDate>Tue, 04 Apr 2023 10:04:09 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=4118</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 10 - 5;<br />
<br />
document.getElementById("demo").innerHTML = a;</code></div></div>]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 10 - 5;<br />
<br />
document.getElementById("demo").innerHTML = a;</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[JavaScript - Subtractions with variables]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=4117</link>
			<pubDate>Tue, 04 Apr 2023 10:03:37 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=4117</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 10;<br />
let b = 5;<br />
let c = a - b;<br />
<br />
document.getElementById("demo").innerHTML = c;</code></div></div>]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 10;<br />
let b = 5;<br />
let c = a - b;<br />
<br />
document.getElementById("demo").innerHTML = c;</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[JavaScript - Subtractions with expressions]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=4116</link>
			<pubDate>Tue, 04 Apr 2023 10:02:29 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=4116</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 1;<br />
let b = (10 - 1) - a;<br />
<br />
document.getElementById("demo").innerHTML = b;</code></div></div>]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 1;<br />
let b = (10 - 1) - a;<br />
<br />
document.getElementById("demo").innerHTML = b;</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[JavaScript - Multiplications with values]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=4115</link>
			<pubDate>Tue, 04 Apr 2023 10:02:01 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=4115</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 2 * 2;<br />
<br />
document.getElementById("demo").innerHTML = a;</code></div></div>]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 2 * 2;<br />
<br />
document.getElementById("demo").innerHTML = a;</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[JavaScript - Multiplications with variables]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=4114</link>
			<pubDate>Tue, 04 Apr 2023 10:01:34 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=4114</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 2;<br />
let b = 2;<br />
let c = a * b;<br />
<br />
document.getElementById("demo").innerHTML = c;</code></div></div>]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 2;<br />
let b = 2;<br />
let c = a * b;<br />
<br />
document.getElementById("demo").innerHTML = c;</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[JavaScript - Multiplications with expressions]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=4113</link>
			<pubDate>Tue, 04 Apr 2023 10:01:06 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=4113</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 2;<br />
let b = (2 * 2) * 2;<br />
<br />
document.getElementById("demo").innerHTML = b;</code></div></div>]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 2;<br />
let b = (2 * 2) * 2;<br />
<br />
document.getElementById("demo").innerHTML = b;</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[JavaScript - Divisions with values]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=4112</link>
			<pubDate>Tue, 04 Apr 2023 10:00:37 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=4112</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 4 / 2;<br />
<br />
document.getElementById("demo").innerHTML = a;</code></div></div>]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 4 / 2;<br />
<br />
document.getElementById("demo").innerHTML = a;</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[JavaScript - Divisions with variables]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=4111</link>
			<pubDate>Tue, 04 Apr 2023 10:00:11 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=4111</guid>
			<description><![CDATA[let a = 4;<br />
let b = 2;<br />
let c = a / b;<br />
<br />
document.getElementById("demo").innerHTML = c;]]></description>
			<content:encoded><![CDATA[let a = 4;<br />
let b = 2;<br />
let c = a / b;<br />
<br />
document.getElementById("demo").innerHTML = c;]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[JavaScript - Divisions with expressions]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=4110</link>
			<pubDate>Tue, 04 Apr 2023 09:59:45 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=4110</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 8;<br />
let b = (8 / 2) / 2;<br />
<br />
document.getElementById("demo").innerHTML = b;</code></div></div>]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>let a = 8;<br />
let b = (8 / 2) / 2;<br />
<br />
document.getElementById("demo").innerHTML = b;</code></div></div>]]></content:encoded>
		</item>
	</channel>
</rss>