ホームページ >ウェブフロントエンド >jsチュートリアル >短くて魅力的な JavaScript スニペット
JavaScript は、Web 開発に広く使用されている、非常に多用途で強力なプログラミング言語です。熟練した開発者であっても、初心者であっても、便利な JavaScript スニペットのセットがあれば時間を節約し、コーディング プロセスを合理化できます。この記事では、さまざまなタスクをカバーする 15 個の短くて魅力的な JavaScript スニペットをまとめました。飛び込んでみましょう!
const currentDateTime = new Date(); console.log(currentDateTime);
const number = [5, 2, 7, 10, 1] const maxNumber = Math.max(...number) // 10
function shuffleArray(array) { return array.sort(() => Math.random() - 0.5); }
const randomNumber = Math.floor(Math.random() * 10) + 1; console.log(randomNumber); // 7
const str = 'Hello, World!'' console.log(str.toLowerCase()); // hello, world!
const num = 5; if (num % 2 === 0) { console.log('Number is even'); } else { console.log('Number is odd'); } // 'Number is odd'
let seconds = 5; const countdown = setInterval(() => { console.log(seconds); seconds--; if (seconds < 0) { clearInterval(countdown); console.log('Countdown finished!'); } }, 1000); // 5 // 4 // 3 // 2 // 1 // Countdown finsihed!
const numbers = [1, 2, 3, 4, 5]; const strings = numbers.map(String); console.log(strings); // ['1', '2', '3', '4', '5']
let arr = ["apple", "mango", "apple", "orange", "mango", "mango"]; const removeDuplicates = arr => [...new Set(arr)]; console.log(removeDuplicates(arr)); // ['apple', 'mango', 'orange']
const sentence = "This is a sentence"; const words = sentence.split(" "); console.log(words); // ['This', 'is', 'a', 'sentence']
function repeatString(str, n){ return str.repeat(n); } const repeatedStr = ('abc', 3); console.log(repeatedStr); // 'abcabcabc'
// Define the intersection function const intersection = (a, b) => a.filter(value => b.includes(value)); // Example arrays const arrayA = [1, 2, 3, 4, 5]; const arrayB = [4, 5, 6, 7, 8]; // Use the intersection function to find common elements const result = intersection(arrayA, arrayB); // Log the result to the console console.log(result); // [4, 5]
const name = 'Matin Imam'; const greeting = `Hello, ${name}!`; console.log(greeting); // "Hello, Matin Imam!"
const person = {name: 'Matin'}; const details = {work: 'Developer'}; const fullDetails = {...person, ...details}; console.log(fullDetails); // {name: 'Matin', age: 30}
setTimeout(() => location.href = https://www.linkedin.com/in/matin-imam/", 5000);
これらの 15 の JavaScript スニペットは、数行のコードで実現できることのほんの一部です。配列、文字列を操作する場合でも、日付と時刻を操作する場合でも、これらのスニペットは開発プロセスを合理化するのに役立ちます。
この投稿を気に入っていただき、つながりをご希望の場合は、LinkedIn でお気軽にご連絡ください。ソフトウェア開発についてもっとつながり、洞察を共有したいと思っています!
LinkedIn で私とつながりましょう
以上が短くて魅力的な JavaScript スニペットの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。