Files
codeql/javascript/ql/test/query-tests/Expressions/MissingSpaceInAppend/ok.js

14 lines
261 B
JavaScript

var s;
s = "some words%n" +
"and more";
s = "some words\n" +
"and more";
s = "the class java.util." +
"ArrayList";
s = "some data: a,b,c," +
"d,e,f";
s = "overflow: scroll;" +
"position: absolute;";
s = "h. 0" + "h"
s = ((("h. 0"))) + (("h")) + ("h")