From looking at the easyble.js code, it seems to store all characteristic UUIDs discovered from the device in a single table indexed by the UUID value itself. This means that the first occurrence of the characteristic will be overwritten by the second and that the readCharacteristic() call will never return the value of the first instance.
Having read "Bluetooth Low Energy, The Developers Handbook", it appears that having the same characteristic UUID in different services is allowed (see section 14.6 for an example). This would mean that to handle this case the readCharacteristic() call would also need the service UUID as well as the characteristic UUID so that the correct characteristic can be found.
Am I right?

At the moment it looks like I will have to implement a routine called readServiceCharacteristic() which will take both a service and a characteristic UUID.
Mike