style.css

 body {            font-family: Arial, sans-serif;            margin: 20px;            padding: 0;        }        #container {            max-width: 500px;            margin: 0 auto;            padding: 20px;            border: 1px solid #ddd;            border-radius: 5px;        }        h2 {            text-align: center;        }        input[type=\\\"text\\\"] {            width: calc(100% - 24px);            padding: 10px;            margin-bottom: 10px;            border: 1px solid #ccc;            border-radius: 3px;        }        button {            width: 100%;            padding: 10px;            background-color: #28a745;            color: #fff;            border: none;            border-radius: 3px;            cursor: pointer;        }        button:hover {            background-color: #218838;        }        h4 {            margin-top: 20px;            color: #555;        }

\\\"Image

","image":"http://www.luping.net","datePublished":"2024-07-31T16:24:03+08:00","dateModified":"2024-07-31T16:24:03+08:00","author":{"@type":"Person","name":"luping.net","url":"https://www.luping.net/articlelist/0_1.html"}}
"إذا أراد العامل أن يؤدي عمله بشكل جيد، فعليه أولاً أن يشحذ أدواته." - كونفوشيوس، "مختارات كونفوشيوس. لو لينجونج"
الصفحة الأمامية > برمجة > طريقة الدفع () في جافا سكريبت

طريقة الدفع () في جافا سكريبت

تم النشر بتاريخ 2024-07-31
تصفح:638

تضيف طريقة الدفع () في JavaScript عنصرًا واحدًا أو أكثر إلى نهاية المصفوفة. تقوم هذه الطريقة بتعديل المصفوفة الأصلية وإرجاع الطول الجديد للمصفوفة.

بناء الجملة :

array.push(element1, element2, ..., elementN);

*مثال 1.: *

const fruits = ["Apple", "Banana"];
fruits.push("Orange", "Mango");
console.log(fruits); // Output: ["Apple", "Banana", "Orange", "Mango"]

*مثال 2.: *
كيفية إضافة العناصر ديناميكيًا باستخدام طريقة الدفع ()

index.html



    Fruit List

Fruit List

style.css

 body {
            font-family: Arial, sans-serif;
            margin: 20px;
            padding: 0;
        }
        #container {
            max-width: 500px;
            margin: 0 auto;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        h2 {
            text-align: center;
        }
        input[type="text"] {
            width: calc(100% - 24px);
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 3px;
        }
        button {
            width: 100%;
            padding: 10px;
            background-color: #28a745;
            color: #fff;
            border: none;
            border-radius: 3px;
            cursor: pointer;
        }
        button:hover {
            background-color: #218838;
        }
        h4 {
            margin-top: 20px;
            color: #555;
        }

Image description

بيان الافراج تم نشر هذه المقالة على: https://dev.to/sudhanshu_developer/explanation-of-push-method-in-javascript-3cb5?1 إذا كان هناك أي انتهاك، يرجى الاتصال بـ [email protected] لحذفه
أحدث البرنامج التعليمي أكثر>

تنصل: جميع الموارد المقدمة هي جزئيًا من الإنترنت. إذا كان هناك أي انتهاك لحقوق الطبع والنشر الخاصة بك أو الحقوق والمصالح الأخرى، فيرجى توضيح الأسباب التفصيلية وتقديم دليل على حقوق الطبع والنشر أو الحقوق والمصالح ثم إرسالها إلى البريد الإلكتروني: [email protected]. سوف نتعامل مع الأمر لك في أقرب وقت ممكن.

Copyright© 2022 湘ICP备2022001581号-3