mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
8 lines
130 B
JavaScript
8 lines
130 B
JavaScript
parseInt(form.day.value);
|
|
parseInt(form.day.value, 10);
|
|
o.parseInt(s);
|
|
|
|
function f(parseInt, s) {
|
|
parseInt();
|
|
parseInt(s, 10);
|
|
} |