Fibonacci.xlsx | 9K |
SCRIPT(`
var x = 0;
var y = 1;
for (var i=1; i<count; i++) {
var n = x+y;
x = y;
y = n;
}
// Result in this value:
x;
`, "count", CURRENTROW)
Fibonacci.iok | 6K |
"
), single quotes ('
) and back-quotes (`
) when specifying literal text. The difference being as follows.Some text with backslashes \ and "other" 'quote' `characters` inside
'Some text with backslashes \\ and "other" \'quote\' `characters` inside'
"Some text with backslashes \\ and \"other\" 'quote' `characters` inside"
`Some text with backslashes \ and "other" 'quote' ``characters`` inside`
It looks like you're new here. If you want to get involved, click one of these buttons!