Just JS
function myFunction() {
return true;
}
Just JS multiline
let multilineString = `
this is the first line
this is the middle line
this is the last line
`;
JS + Linehighlight
let multilineString = `
this is the first line
this is the middle line
this is the last line
`;
JS + Linehighlight with /
let multilineString = `
this is the first line
this is the middle line
this is the last line
`;
Swift + show lineNumbers
1let multilineString = `
2this is the first line
3this is the middle line
4this is the last line
5`;
Swift + show lineNumbers + highlight 1 & 3
1let multilineString = `
2this is the first line
3this is the middle line
4this is the last line
5`;
Swift + show lineNumbers + highlight 1 & 3
1
2
3
4
5
|
let multilineString = `
this is the first line
this is the middle line
this is the last line
`;
|