class User {
public string id;
public string name;
}
public class Program
{
public static T Request<T>(string url) where T : new() {
return new T();
}
public static void Main()
{
var user = Request<User>("https://127.0.0.1");
}
}
<label for="switch">Toggle</label>
Но что делать, если элементов много?
const arr = [1,2,3,4,5,6,7,8,9,10];
arr.forEach((value, index) => {
window[`elem_${index}`] = value;
})
console.log(elem_1); // 1
console.log(elem_2); // 2
const hash = async (str) => {
const msgUint8 = new TextEncoder().encode(str);
const hashBuffer = await crypto.subtle.digest("SHA-512", msgUint8);
const hashArray = Array.from(new Uint8Array(hashBuffer));
const hashHex = hashArray.map(b => b.toString(16).padStart(2, "0")).join("");
return hashHex;
}
Как заставить работать звук WebRTC в Google Chrome?