0 votes
in JavaScript by
Which one of the following operator is used to check weather a specific property exists or not:

a) Exists

b) exist

c) within

d) in

1 Answer

0 votes
by

Answer: D

Reason: In JavaScript, the "in" operator is used to check if a specific property exists. The "in" operator is commonly used in looping statements to traverse array and objects as well.

Related questions

0 votes
asked Dec 1, 2022 in JavaScript by john ganales
0 votes
asked Oct 19, 2019 in JavaScript by SakshiSharma
...