Forum Discussion
_anomDiebolt_
10 years agoQrew Elite
>QuickBase is a "low code" platform
Yeah I'm hopping on the "low code" cluetrain myself. Instead of this:
$.get(url, {
act: "API_DoQuery",
qid: "1"
}).then(function(xml) {
// your code here
});
I am going save a lot of keystrokes not typing the "function" keyword by using the "fat arrow" syntax:
$.get(url, {
act: "API_DoQuery",
qid: "1"
}).then(xml => {
// your code here
});
Yeah I'm hopping on the "low code" cluetrain myself. Instead of this:
$.get(url, {
act: "API_DoQuery",
qid: "1"
}).then(function(xml) {
// your code here
});
I am going save a lot of keystrokes not typing the "function" keyword by using the "fat arrow" syntax:
$.get(url, {
act: "API_DoQuery",
qid: "1"
}).then(xml => {
// your code here
});