i can's seem to get the element by using id with query selector. Is there a way to check if the checkbox were checked using document.getelementbyId?
<script>
function checked(a,b,c){
    var marked = (a+b+c)
    document.write(marked);
}
function filled(){
    var value1 = document.querySelector("#1:checked").value;
    var value2 = document.querySelector("#2:checked").value;
    var value3 = document.querySelector("#3:checked").value;
    checked(value1,value2,value3);
    
}
<body>
<input class="chk1" id="1" type="checkbox" value="10"/>
<input class="chk2" id="2" type="checkbox" value="20"/>
<input class="chk3" id="3" type="checkbox" value="30"/>
<button name="submit" onclick="filled()" type="button" style="width: 100px; height: 100px;" >Submit</button>
</body>
 
    