-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
278 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
export default function NavBar() { | ||
const menus = [ | ||
{ name: "later", href: "/" }, | ||
{ name: "later", href: "/docs" }, | ||
]; | ||
|
||
return ( | ||
<nav class="bg-base-300 w-full py-4 px-8 flex flex-col md:flex-row gap-4"> | ||
<div class="flex items-center flex-1"> | ||
<div class="flex items-center gap-1"> | ||
<image src="/logo.png" class="h-8 w-8" /> | ||
<a href="/" class="text-2xl ml-1 font-bold hover:animate-pulse"> | ||
NakhlahJS | ||
</a> | ||
</div> | ||
</div> | ||
<ul class="flex items-center gap-6"> | ||
{menus.map((menu) => ( | ||
<li> | ||
<a | ||
href={menu.href} | ||
class={"text-gray-500 hover:text-gray-700 py-1 border-gray-500"} | ||
> | ||
{menu.name} | ||
</a> | ||
</li> | ||
))} | ||
</ul> | ||
</nav> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,26 @@ | ||
--- | ||
sidebar_position: 2 | ||
title: الوصول إلى المصفوفات متعددة الأبعاد | ||
snippet: احدى طرق التفكير في المصفوفة متعددة الأبعاد | ||
order: 2 | ||
--- | ||
|
||
# الوصول إلى المصفوفات متعددة الأبعاد | ||
|
||
إحدى طرق التفكير في المصفوفة متعددة الأبعاد هي أنها مصفوفة من المصفوفات. عند استخدام الأقواس للوصول إلى المصفوفة الخاصة بك، تشير المجموعة الأولى من الأقواس إلى الإدخالات الموجودة في المصفوفة الخارجية (المستوى الأول)، ويشير كل زوج إضافي من الأقواس إلى المستوى التالي من الإدخالات بالداخل. | ||
إحدى طرق التفكير في المصفوفة متعددة الأبعاد هي أنها مصفوفة من المصفوفات. عند | ||
استخدام الأقواس للوصول إلى المصفوفة الخاصة بك، تشير المجموعة الأولى من الأقواس | ||
إلى الإدخالات الموجودة في المصفوفة الخارجية (المستوى الأول)، ويشير كل زوج إضافي | ||
من الأقواس إلى المستوى التالي من الإدخالات بالداخل. | ||
|
||
```js | ||
const arr = [ | ||
[1, 2, 3], | ||
[4, 5, 6], | ||
[7, 8, 9], | ||
[[10, 11, 12], 13, 14] | ||
[[10, 11, 12], 13, 14], | ||
]; | ||
|
||
const subarray = arr[3]; | ||
const nestedSubarray = arr[3][0]; | ||
const element = arr[3][0][1]; | ||
``` | ||
في هذا المثال، ```subarray``` له القيمة ```[[10, 11, 12], 13, 14]```، و ```nestedSubarray``` له القيمة ```[10, 11, 12]```، و ```element``` له القيمة ```11``` . | ||
|
||
في هذا المثال، `subarray` له القيمة `[[10, 11, 12], 13, 14]`، و `nestedSubarray` | ||
له القيمة `[10, 11, 12]`، و `element` له القيمة `11` . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"label": "المصفوفات", | ||
"label": "الأرقام", | ||
"order": 4 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,25 @@ | ||
--- | ||
sidebar_position: 2 | ||
title: إنشاء أرقام عشرية | ||
snippet: يمكننا تخزين الأرقام العشرية في المتغيرات أيضا | ||
order: 2 | ||
--- | ||
|
||
# إنشاء أرقام عشرية | ||
|
||
يمكننا تخزين الأرقام العشرية في المتغيرات أيضا. يُشار أحيانًا إلى الأرقام العشرية على أنها أرقام الفاصلة العائمة أو الأعداد العشرية. | ||
يمكننا تخزين الأرقام العشرية في المتغيرات أيضا. يُشار أحيانًا إلى الأرقام العشرية | ||
على أنها أرقام الفاصلة العائمة أو الأعداد العشرية. | ||
|
||
```js | ||
const ourDecimal = 5.7; // رقم عشري | ||
``` | ||
|
||
في JavaScript، يمكنك أيضًا إجراء عمليات حسابية باستخدام الأعداد العشرية، تمامًا مثل الأعداد الصحيحة. | ||
في JavaScript، يمكنك أيضًا إجراء عمليات حسابية باستخدام الأعداد العشرية، تمامًا | ||
مثل الأعداد الصحيحة. | ||
|
||
دعونا نقوم بإجراء عمليات حسابية باستخدام عددين عشريين معًا. | ||
|
||
```js | ||
const prd = 2.0 * 0.0; | ||
console.log(prd) // 0 | ||
console.log(prd); // 0 | ||
|
||
const div = 1.0 / 2.0; | ||
console.log(div) // 0.5 | ||
``` | ||
console.log(div); // 0.5 | ||
``` |
Oops, something went wrong.