Skip to content

Commit 0cbb857

Browse files
authored
Update example code in README.md (swiftwasm#100)
It was my mistake to convert the example code to the new style without checking it in a real app, turns out there were a few errors in the converted version. Calling `alert` on `JSObject.global` still requires force unwrapping. Also, dynamic properties can't be updated on `JSValue` constants, so need to convert `divElement` to a `var` binding.
1 parent 766d2e1 commit 0cbb857

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import JavaScriptKit
3434

3535
let document = JSObject.global.document
3636

37-
let divElement = document.createElement("div")
37+
var divElement = document.createElement("div")
3838
divElement.innerText = "Hello, world"
3939
_ = document.body.appendChild(divElement)
4040

@@ -50,7 +50,7 @@ struct Pet: Codable {
5050
let jsPet = JSObject.global.pet
5151
let swiftPet: Pet = try JSValueDecoder().decode(from: jsPet)
5252

53-
JSObject.global.alert("Swift is running in the browser!")
53+
JSObject.global.alert!("Swift is running in the browser!")
5454
```
5555

5656
### Usage in a browser application

0 commit comments

Comments
 (0)