Categories
JavaScript Answers

How to get the start date and end date of current week, with the week start from Monday and end with Sunday, with JavaScript?

Sometimes, we want to get the start date and end date of current week, with the week start from Monday and end with Sunday, with JavaScript.

In this article, we’ll look at how to get the start date and end date of current week, with the week start from Monday and end with Sunday, with JavaScript.

How to get the start date and end date of current week, with the week start from Monday and end with Sunday, with JavaScript?

To get the start date and end date of current week, with the week start from Monday and end with Sunday, with JavaScript, we can use some date methods.

For instance, we write:

const startAndEndOfWeek = (date) => {
  const now = date ? new Date(date) : new Date().setHours(0, 0, 0, 0);
  const monday = new Date(now);
  monday.setDate(monday.getDate() - monday.getDay() + 1);
  const sunday = new Date(now);
  sunday.setDate(sunday.getDate() - sunday.getDay() + 7);
  return [monday, sunday];
}

const d = new Date(2022, 3, 1)
console.log(startAndEndOfWeek(d))

to define the startAndEndOfWeek function that takes a date.

In it, we compute the Monday and Sunday of the week that has the given date.

To do this, we create a copy of date with the Date constructor.

Then we get monday by creating a new date from now.

And then we call setDate with monday.getDate() - monday.getDay() + 1 to set the day of the week of monday to the Monday within the same week as date.

Likewise, we call setDate with sunday.getDate() - sunday.getDay() + 7 to set the day of the week of sunday to the Sunday within the same week as date.

Finally, we return both dates.

As a result, the console log logs  [Mon Mar 28 2022 00:00:00 GMT-0700 (Pacific Daylight Time), Sun Apr 03 2022 00:00:00 GMT-0700 (Pacific Daylight Time)].

Conclusion

To get the start date and end date of current week, with the week start from Monday and end with Sunday, with JavaScript, we can use some date methods.

Categories
JavaScript Answers

How to add an image placeholder with JavaScript?

Sometimes, we want to add an image placeholder with JavaScript.

In this article, we’ll look at how to add an image placeholder with JavaScript.

How to add an image placeholder with JavaScript?

To add an image placeholder with JavaScript, we can handle the img element’s error event.

For instance, we write:

<img src='abc'>

to add an img element.

Then we write:

const img = document.querySelector('img')
img.onerror = (e) => {
  e.target.src = 'https://picsum.photos/200/300'
}

to select the img element with querySelector.

Next, we set the img.onerror property to a function that sets the img’s src property to the placeholder image’s URL.

Therefore, when the image fails to load, onerror will run and set the src attribute to the placeholder image URL.

Conclusion

To add an image placeholder with JavaScript, we can handle the img element’s error event.

Categories
JavaScript Answers

How to get the key and value of an object in JavaScript?

Sometimes, we want to get the key and value of an object in JavaScript.

In this article, we’ll look at how to get the key and value of an object in JavaScript.

How to get the key and value of an object in JavaScript?

To get the key and value of an object in JavaScript, we can use the Object.entries method.

For instance, we write:

const topBrands = [{
  'Adidas': 100
}, {
  'Nike': 50
}];

for (const t of topBrands) {
  for (const [key, val] of Object.entries(t)) {
    console.log(key, val)
  }
}

to loop through the entries of the topBrands array with the for-of loop.

In the loop, we get the key-value entries as an array with Object.entries.

Then we loop through the key-value arrays returned with another for-of loop and log the key and val values.

Therefore, we see:

"Adidas", 100
"Nike", 50

logged.

Conclusion

To get the key and value of an object in JavaScript, we can use the Object.entries method.

Categories
JavaScript Answers

How to check if array has elements from another array with JavaScript?

Sometimes, we want to check if array has elements from another array with JavaScript.

In this article, we’ll look at how to check if array has elements from another array with JavaScript.

How to check if array has elements from another array with JavaScript?

To check if array has elements from another array with JavaScript, we can use the array some and includes method.

For instance, we write:

const a = [1, 2, 3]
const b = [1, 4, 5]
const includesB = a.some(e => b.includes(e))
console.log(includesB)

to call a.some with a callback that returns b.includes(e) to check any element in a is also in b.

Since 1 is in a and b, includesB is true.

Conclusion

To check if array has elements from another array with JavaScript, we can use the array some and includes method.

Categories
JavaScript Answers

How to find if object property exists in array with JavaScript and Lodash?

Sometimes, we want to find if object property exists in array with JavaScript and Lodash.

In this article, we’ll look at how to find if object property exists in array with JavaScript and Lodash.

How to find if object property exists in array with JavaScript and Lodash?

To find if object property exists in array with JavaScript and Lodash, we can use the find method.

For instance, we write:

const data = [{
    "name": "apple",
    "id": "apple0"
  },
  {
    "name": "dog",
    "id": "dog1"
  },
  {
    "name": "cat",
    "id": "cat2"
  }
]

const apple = _.find(data, {
  name: 'apple'
})
console.log(apple)

to call _.find with data with the property key and value we’re looking for.

Therefore, apple is {name: 'apple', id: 'apple0'}.

Conclusion

To find if object property exists in array with JavaScript and Lodash, we can use the find method.