0.00.0100005050NY50000YN1000localhost:8080localhost8080clusterEncrypted 2be98afc86aa7f2e4cb1aa265cd86aac8Y-2010/01/27 20:54:58.937Generate RowsModified Java Script ValueNGenerate RowsUser Defined Java ClassYGenerate RowsRowGeneratorN1noneyearInteger2010-1-110000000132160YModified Java Script ValueScriptValueModY1noneN0Script 1
//Script to calculate Easter day
//according to the "Anonymous Gregorian algorithm"
function easterDay(year) {
var a = year % 19,
b = Math.floor(year / 100),
c = year % 100,
d = Math.floor(b / 4),
e = b % 4,
f = Math.floor((b + 8) / 25),
g = Math.floor((b - f + 1) / 3),
h = (19 * a + b - d - g + 15) % 30,
i = Math.floor(c / 4),
k = c % 4,
L = (32 + 2 * e + 2 * i - h - k) % 7,
m = Math.floor((a + 11 * h + 22 * L) / 451),
n = h + L - 7 * m + 114;
return new Date(year, Math.floor(n / 31) - 1, (n % 31) + 1);
}
var easter = easterDay(year);eastereasterDate-1-1N34799YUser Defined Java ClassUserDefinedJavaClassY1noneTRANSFORM_CLASSEasterCalceasterDate-1-1NYEARyearThe field that contains the year to calculate Easter with347246YN