Features
-
Chipset: ${(data.mainFeatures.chipSet) == true}
+
Chipset: ${data.mainFeatures.chipSet}
Storage: ${data.mainFeatures.storage}
Display Size: ${data.mainFeatures.displaySize}
Memory: ${data.mainFeatures.memory}
Sensors: ${data.mainFeatures.sensors}
Others
-
WLAN: ${data.others.WLAN}
-
Bluetooth: ${data.others.Bluetooth}
-
GPS: ${data.others.GPS}
-
NFC: ${data.others.NFC}
-
Radio: ${data.others.Radio}
-
USB: ${data.others.USB}
-
Release Date: ${data.releaseDate}
+
WLAN: ${data.others.WLAN ? data.others.WLAN:"not available"}
+
Bluetooth: ${data.others.Bluetooth?data.others.Bluetooth:"Not avaolable"}
+
GPS: ${data.others.GPS?data.others.GPS:"Not available"}
+
NFC: ${data.others.NFC ? data.others.NFC:"not availbale"}
+
Radio: ${data.others.Radio ? data.others.Radio:"not available"}
+
USB: ${data.others.USB ? data.others.USB:"not available"}
+
Release Date: ${data.releaseDate?data.releaseDate : 'not available'}