Posted On April 4, 2019

Basic JavaScript: Escaping Literal Quotes in Strings

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Basic JavaScript: Escaping Literal Quotes in Strings
var myStr = "Yo Mama said, \"have some cookies\"";

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Check RPC Services on Remote Windows Machines

This current version is to be more compatible with PoSH 6.0 (by removing work-flow) as…

PowerShell: Deploy Choco Apps

Deployment Instructions: Create a batch file with this content to call this PowerShell Script @echo…

Hyper-V: Creating a New Virtual Machine

# Compulsory variables $hyperVHost='HYPERV007' $vmName='WindowsGoldenImage' $parentDirectory='C:\ClusterStorage\Volume5' $disk1Size='100GB' $memoryAllocation='8GB' $networkSwitch='PublicZone' $vlan='1005' $clusterName='DEV-CLUSTER05' # Optional variables $disk2Size=$false…