The code below does not pass a value to y but the code works anyway, does anyone know how it works?
I would like to learn more about, does anyone know the name of this javascript feature?
function base(x) {
return function produto(y)...
I made a method for counting repeated letters that are stored and ordered alphabetically within a list. The method is counting right but the bug is at the time of printing, it printa the letter and the amount of times that appears in the sentenc...
I have a method that receives an integer that can be null , in case some method executions happen, but when I use this same variable in a place that uses int that can not be null, it appears that the overload is incorrect....
I have the following class:
Nota
{
int id;
int idFornecedor;
int idProduto;
int idClasse;
}
and I have the respective classes referring to the ids of the previous class:
Fornecedor
{
int id;
string descricao;
}
Pr...
Is it possible to use the property of an object as an index of an array , as described in the example below?
using System;
public class Program
{
public static void Main()
{
var myObjectArray = new MyObject[]{
new...
I'm trying and I'm doing the same explains in w3schools but it's not working.
.box {
width: 250px;
text-overflow: ellipsis;
border: 1px solid #000000;
}
<div class="box">
Lorem ipsum dolor sit amet, consectetur ad...
In javascript , how do I get the value of a string and use a function as a call, I save in the database which function to use in onchange of an input, exe: validaData validaCPF , diaUtil .
Example:
va...
Colleagues.
When calculating cart shipping, it is returning as follows:
Iwonder,howdoIgetonlythevalue24.90?Well,Imustaddtothevalueofthecart.Seethecodesbelow:PHP$parametros=http_build_query($parametros);$url='http://ws.correios.com.br/calc...
I need a way to style the × icon that is at the end of input[type="search"] .
The input type search when focusing on the element, it has an × if it has a value filled in.
Example:
InoticedthatwhenItypetheinputsearch,this"x" often...