User talk:Johnrdorazio: Difference between revisions
Content deleted Content added
Johnrdorazio (talk | contribs) |
Johnrdorazio (talk | contribs) |
||
Line 13: | Line 13: | ||
== Test syntax highlighting == |
== Test syntax highlighting == |
||
'''Javascript:''' |
|||
<syntaxhighlight lang="js" line> |
<syntaxhighlight lang="js" line> |
||
let jsV = "Javascript variable"; |
let jsV = "Javascript variable"; |
||
Line 18: | Line 19: | ||
item: "First item" |
item: "First item" |
||
} |
} |
||
</syntaxhighlight> |
|||
'''PHP''' |
|||
<syntaxhighlight lang="php" line> |
|||
$myVar = "PHP variable"; |
|||
$myVarUpper = strtoupper($myVar); |
|||
</syntaxhighlight> |
</syntaxhighlight> |
Revision as of 15:17, October 9, 2021
Here's a place to discuss this online encyclopedia with me
If you have any questions or need help when creating or editing an article, please feel free to contact me and we can try to work out any issues. Just click on Add topic here on top.
Test audio player
Test Score tag
Test syntax highlighting
Javascript:
let jsV = "Javascript variable";
let jsObj = {
item: "First item"
}
PHP
$myVar = "PHP variable";
$myVarUpper = strtoupper($myVar);