Posted On April 4, 2019

Basic JavaScript: Understand String Immutability

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Basic JavaScript: Understand String Immutability
// Setup
var myStr = "Jello World";

// Only change code below this line

myStr[0] = "H"; // Fix Me

Leave a Reply

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

Related Post

PowerShell: File Copying Operation

2/11/20 Update: Version 0.1.8 is available here: https://blog.kimconnect.com/powershell-file-copy-script-using-emcopy-vss-legacy/ Version 0.1.6 <#.Description File_Copy_Script Version: 0.16Purpose: this…

How To Modify Collectors of Windows Exporter

Update: here's a generalized version of this function that can be applied to other services…

PowerShell: Uninstalling an Application

$appname='Google Chrome' function uninstallApp($appName){ $alternativeMethod=$false try{ $app = Get-WmiObject -Class Win32_Product | Where-Object{$_.Name -eq $appName}…