<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Javascript Notepad by Duy Nguyễn</title>
      <link>https://padlet.com/duy011148/i97p0367k5lxzf6z</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2023-03-25 01:47:14 UTC</pubDate>
      <lastBuildDate>2023-06-17 02:17:01 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Lesson 1_ Introduction</title>
         <author>duy011148</author>
         <link>https://padlet.com/duy011148/i97p0367k5lxzf6z/wish/2531021506</link>
         <description><![CDATA[<pre>// function of alert() --&gt; To create a small notification on top of the websitealert('Hello, World!')<br>// function of var x = str/int --&gt; To attach a string/integer value for a specific variationvar x = 'My name is JavaScript'var y = 'Nice to meet you!'alert(x)alert(y)<br>// function of document.write('text here') --&gt; To write characters on the websitedocument.write("Welcome to my Website!","&lt;br&gt;")document.write("There's nothing so special about it tho")<br>// function of console.log() --&gt; To write texts in the console page (console is in Inspection Page)// different variations of console.log --&gt; console.warn() ; console.error()console.log("Hello, User!")console.warn("An elaborate precaution :)")console.error("An error has occured :(")</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-03-25 01:50:01 UTC</pubDate>
         <guid>https://padlet.com/duy011148/i97p0367k5lxzf6z/wish/2531021506</guid>
      </item>
      <item>
         <title>Lesson 2_ Object Determination</title>
         <author>duy011148</author>
         <link>https://padlet.com/duy011148/i97p0367k5lxzf6z/wish/2531021887</link>
         <description><![CDATA[<pre>// Primitive data type - complex // Primitive: number(number), string (string of text), boolean (true // false - true false), undefined (undefined variable), null (no value) any value) // Complex: Array, Object, Function, RegEx, Date, etc. // Complex variable: Array - Group of similar values // Object - Represents an object / accessible objects access // Object as key - value // eg: ob1: 'hi' // Array can be used as var MyArray =</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-03-25 01:51:01 UTC</pubDate>
         <guid>https://padlet.com/duy011148/i97p0367k5lxzf6z/wish/2531021887</guid>
      </item>
      <item>
         <title>Lesson 3_ Mathemetic Operator</title>
         <author>duy011148</author>
         <link>https://padlet.com/duy011148/i97p0367k5lxzf6z/wish/2531022316</link>
         <description><![CDATA[<pre>There are two main types of operators used in JS:
+) Comparison operator: &lt; (less than); &gt; (greater than); = (equal) ; &lt;= (less than or equal to)
; &gt;= (greater than or equal to); == (equivalence comparison) - same in character; = (assign value to x); != (different comparison)
; === (absolute comparison) - Compares the same character and data type

+) Logical operator (true/false comparison):
The computer will give priority to receive the first value first

If the value 1 is true, then get all without looking at b and c
If the value 1 is wrong, the other values ​​will be looked at

&amp;&amp; - AND (and)
[ returns True when both gtris are True
  For example: a &amp;&amp; b with a = True, b = False -&gt; True
      a &amp;&amp; b with a = True, b = True -&gt; True
      a &amp;&amp; b with a = False, b = False -&gt; False


!gtri
[ Returns the opposite gtri of a
  For example: !a with a is True -&gt; False
      !b where b is False -&gt; True

+) operator if (compare conditions):
Statement: if (condition) { -&gt; Remember to use curly brackets
| command line
} -&gt; Close brackets
VD:
var a = 1
var b = 2
if (a == b) { -&gt; Condition 1
| console.log("True")
}else if (a != b) { -&gt; Create condition 2<br>| console.log("True-2")<br>}<br>else { -&gt; Remaining condition<br>| console.log("False")<br>}<br><br>Return Value --&gt; "True-2"</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-03-25 01:52:17 UTC</pubDate>
         <guid>https://padlet.com/duy011148/i97p0367k5lxzf6z/wish/2531022316</guid>
      </item>
      <item>
         <title>Lesson 4_ Function</title>
         <author>duy011148</author>
         <link>https://padlet.com/duy011148/i97p0367k5lxzf6z/wish/2531022530</link>
         <description><![CDATA[<pre>// The function command in Javascript is used with the purpose of creating a defined integrated command which consists of many other small commands inside and leads to a narrative of events when being executed (Basically the same as the def() command in Python)

The formula of the function() command can be interpreted down below:
function nameFunction (attached value, attached value 2) {
        list of other commands
}
*attached value - a value that is attached inside of the function command and takes part as a factor of the command

*nameFunction - name of the Function (can be manually changed)

// e.x: 
function Addition_Math (value1, value2) {
      add_value = value1 + value2
      document.writeIn(value3)
}
Addition_Math(1,2)

Returned value:
3

Additional commands: eval()
// Function of eval(): It looks cool (especially in Mathematic commands)</pre><div><br></div><div><br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-03-25 01:52:46 UTC</pubDate>
         <guid>https://padlet.com/duy011148/i97p0367k5lxzf6z/wish/2531022530</guid>
      </item>
      <item>
         <title>Lesson 5_ Database</title>
         <author>duy011148</author>
         <link>https://padlet.com/duy011148/i97p0367k5lxzf6z/wish/2619689628</link>
         <description><![CDATA[<div>Database là cơ sở nền tảng lưu trữ và cung cấp dữ liệu, có thể dễ dàng truy cập, truy xuất và cập nhật thông tin. Về mặt lập trình viên, Database giúp cho các lập trình viên có thể quản lý dữ liệu dễ dàng và tổ chức hơn.<br><br>Heroku là nền tảng đám mây cho phép các lập trình viên triển khai, xây dựng, quản lý (điều hành và vận hành máy chủ phần mềm và phần cứng) và mở rộng ứng dựng (PPaS - Platform as a service). Heroku là một nền tảng rất <strong>linh hoạt&nbsp;</strong>và&nbsp;<strong>dễ sử dụng</strong>.&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-06-10 02:44:31 UTC</pubDate>
         <guid>https://padlet.com/duy011148/i97p0367k5lxzf6z/wish/2619689628</guid>
      </item>
   </channel>
</rss>
