JavaScript는 놀라울 정도로 다재다능하고 강력한 프로그래밍 언어로 웹 개발에 널리 사용됩니다. 숙련된 개발자이든 이제 막 시작하는 개발자이든 편리한 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!