5 lines
143 B
JavaScript
5 lines
143 B
JavaScript
|
|
testLibrary = {}
|
||
|
|
|
||
|
|
testLibrary.logElementDensity = function (element) {
|
||
|
|
console.log(element + " density is " + elements[element].density);
|
||
|
|
}
|