We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cbbdb3 commit 39508bdCopy full SHA for 39508bd
1 file changed
API.md
@@ -278,7 +278,8 @@ Here we use the await functionality of Node.js.
278
279
```javascript
280
let read1 = await thing.readProperty("count");
281
-console.info("count value is", read1);
+let value = await read1.value();
282
+console.info("count value is", value);
283
```
284
285
##### Set the value of a Property or a set of properties
0 commit comments