Skip to main content
13-Aquamarine
April 20, 2023
Solved

How to find if a Thing name already exists

  • April 20, 2023
  • 1 reply
  • 1630 views

dear expert  

ThingName already exists or not how to find any services , any script share 

 requirement:

I write JavaScript code ,how to compare already  thingName present or not 

 

Best answer by jensc

Hello,

 

There is a way to see if a thing with a specific name already exists.

 

Here is some code to achieve this:

result = 'thing doesnt exist';
let thingName = 'YourThingName';
if (Things[thingName]) {
 result = 'thing exist';
}

This code will check if there is a thing with the name that you have already exists or not.

 

Regards,

Jens

1 reply

jensc17-PeridotAnswer
17-Peridot
April 20, 2023

Hello,

 

There is a way to see if a thing with a specific name already exists.

 

Here is some code to achieve this:

result = 'thing doesnt exist';
let thingName = 'YourThingName';
if (Things[thingName]) {
 result = 'thing exist';
}

This code will check if there is a thing with the name that you have already exists or not.

 

Regards,

Jens

13-Aquamarine
April 21, 2023

hi @jensc

thanks to support,

 

Regards,

Hariharasuthan