-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b0c14f1
commit 0865a55
Showing
14 changed files
with
260 additions
and
160 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
</head> | ||
<body> | ||
|
||
</body> | ||
|
||
<script> | ||
let unusablePinForInput= [0,6,7,8,9,10,11,20,21,24,28,29,30,31,37,38] | ||
let unusablePinForOutput= [0,6,7,8,9,10,11,20,21,24,28,29,30,31,34,35,36,37,38,39] | ||
let pin =18 | ||
console.log(unusablePinForOutput) | ||
console.log(18) | ||
console.log(unusablePinForOutput.includes(parseInt(pin))) | ||
console.log(unusablePinForOutput.indexOf(parseInt(pin))) | ||
</script> | ||
</html> |
Oops, something went wrong.