JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://yui.yahooapis.com/3.7.2/build/yui/yui-min.js"></script>
JavaScript
YUI().use("model", function (Y) {
var m = new Y.Model(
{
someAttrId: "someValue"
}
);
console.log("id: " + m.get("id"));
console.log("clientId: " + m.get("clientId"));
console.log("someAttrId: " + m.get("someAttrId"));
});